config/backends: Add Jetson AGX Orin Devkit to the list of DTs that support configurable device-tree

Change-type: patch
Signed-off-by: Alexandru Costache <alexandru@balena.io>
This commit is contained in:
Alexandru Costache 2022-10-26 12:31:15 +03:00
parent fd285b8f25
commit ea92fa9162
2 changed files with 3 additions and 0 deletions

View File

@ -62,6 +62,7 @@ export class ExtraUEnv extends ConfigBackend {
deviceType.endsWith('-nano-2gb-devkit') ||
deviceType.endsWith('-tx2') ||
deviceType.includes('-tx2-nx') ||
deviceType.includes('-agx-orin-') ||
/imx8mm-var-som/.test(deviceType) ||
/imx8mm?-var-dart/.test(deviceType)) &&
(await exists(ExtraUEnv.bootConfigPath))

View File

@ -267,6 +267,8 @@ const MATCH_TESTS = [
{ type: 'jetson-tx2-nx-devkit', supported: true },
{ type: 'photon-tx2-nx', supported: true },
{ type: 'jetson-xavier-nx-devkit', supported: false },
{ type: 'jetson-agx-orin-devkit', supported: true },
{ type: 'jetson-agx-orin', supported: false },
{ type: 'photon-xavier-nx', supported: false },
{ type: 'imx8m-var-dart', supported: true },
{ type: 'imx8mm-var-dart', supported: true },