diff --git a/src/config/backends/extra-uEnv.ts b/src/config/backends/extra-uEnv.ts index 8662cd42..32c0ceda 100644 --- a/src/config/backends/extra-uEnv.ts +++ b/src/config/backends/extra-uEnv.ts @@ -61,7 +61,8 @@ export class ExtraUEnv extends ConfigBackend { deviceType.endsWith('-nano-emmc') || deviceType.endsWith('-nano-2gb-devkit') || deviceType.endsWith('-tx2') || - deviceType.includes('-tx2-nx')) && + deviceType.includes('-tx2-nx') || + /imx8mm?-var-dart/.test(deviceType)) && (await exists(ExtraUEnv.bootConfigPath)) ); } diff --git a/test/33-extra-uenv-config.spec.ts b/test/33-extra-uenv-config.spec.ts index 12efb649..ebfeee00 100644 --- a/test/33-extra-uenv-config.spec.ts +++ b/test/33-extra-uenv-config.spec.ts @@ -269,4 +269,9 @@ const MATCH_TESTS = [ { type: 'photon-tx2-nx', supported: true }, { type: 'jetson-xavier-nx-devkit', supported: false }, { type: 'photon-xavier-nx', supported: false }, + { type: 'imx8m-var-dart', supported: true }, + { type: 'imx8mm-var-dart', supported: true }, + { type: 'imx8mm-var-dart-nrt', supported: true }, + { type: 'imx8mm-var-dart-plt', supported: true }, + { type: 'imx6ul-var-dart', supported: false }, ];