diff --git a/src/config/backends/extra-uEnv.ts b/src/config/backends/extra-uEnv.ts index 6f1caa67..4b9316a3 100644 --- a/src/config/backends/extra-uEnv.ts +++ b/src/config/backends/extra-uEnv.ts @@ -63,6 +63,7 @@ export class ExtraUEnv extends ConfigBackend { return ( (deviceType.endsWith('-nano') || deviceType.endsWith('-nano-emmc') || + deviceType.endsWith('-nano-2gb-devkit') || deviceType.endsWith('-tx2') || deviceType.includes('-tx2-nx')) && (await exists(ExtraUEnv.bootConfigPath)) diff --git a/test/33-extra-uenv-config.spec.ts b/test/33-extra-uenv-config.spec.ts index c5f9c9a9..5ee46c6f 100644 --- a/test/33-extra-uenv-config.spec.ts +++ b/test/33-extra-uenv-config.spec.ts @@ -266,6 +266,8 @@ const MATCH_TESTS = [ { type: 'fincm3', supported: false }, { type: 'asus-tinker-board', supported: false }, { type: 'nano-board', supported: false }, + { type: 'jetson-nano-2gb-devkit', supported: true }, + { type: 'jetson-nano-2gb-devkit-emmc', supported: false }, { type: 'tx2-tx2-device', supported: false }, { type: 'jetson-tx2-nx-devkit', supported: true }, { type: 'photon-tx2-nx', supported: true },