Merge pull request #2045 from balena-os/add_agx_orin_to_supported_fdt

config/backends: Add Jetson AGX Orin Devkit to the list of DTs that support configurable device-trees
This commit is contained in:
bulldozer-balena[bot] 2022-10-27 14:59:18 +00:00 committed by GitHub
commit 2d01123112
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 },