From 512240c54490ccd0cb83c13f0c6e8cae43fe9a88 Mon Sep 17 00:00:00 2001 From: Alexandru Costache Date: Tue, 11 Jul 2023 18:11:32 +0300 Subject: [PATCH] backends: Add Jetson Orin NANO custom device-tree support Signed-off-by: Alexandru Costache Change-type: patch --- src/config/backends/extra-uEnv.ts | 1 + test/integration/config/extra-uenv.spec.ts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/config/backends/extra-uEnv.ts b/src/config/backends/extra-uEnv.ts index 584fa9ce..81ef4b23 100644 --- a/src/config/backends/extra-uEnv.ts +++ b/src/config/backends/extra-uEnv.ts @@ -63,6 +63,7 @@ export class ExtraUEnv extends ConfigBackend { deviceType.includes('-tx2-nx') || deviceType.includes('-agx-orin-') || deviceType.includes('-orin-nx-') || + deviceType.includes('-orin-nano-') || /imx8mm-var-som/.test(deviceType) || /imx8mm?-var-dart/.test(deviceType)) && (await exists(ExtraUEnv.bootConfigPath)) diff --git a/test/integration/config/extra-uenv.spec.ts b/test/integration/config/extra-uenv.spec.ts index 5df03722..f7e1ddf9 100644 --- a/test/integration/config/extra-uenv.spec.ts +++ b/test/integration/config/extra-uenv.spec.ts @@ -233,6 +233,8 @@ const MATCH_TESTS = [ { type: 'jetson-orin-nx-xavier-nx-devkit', supported: true }, { type: 'cti-orin-nx-custom-carrier', supported: true }, { type: 'jetson-orin-agx-nx-xavier-nx-devkit', supported: false }, + { type: 'jetson-orin-nano-devkit-nvme', supported: true }, + { type: 'jetson-orin-agx-nano-devkit-nvme', supported: false }, { type: 'photon-xavier-nx', supported: false }, { type: 'imx8m-var-dart', supported: true }, { type: 'imx8mm-var-dart', supported: true },