Merge pull request #391 from Gautham103/jetson-thor

add support for jetson thor
This commit is contained in:
Melissa LeBlanc-Williams 2025-08-27 12:31:04 -07:00 committed by GitHub
commit bf1cb100e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -103,6 +103,7 @@ JETSON_NANO = "JETSON_NANO"
JETSON_NX = "JETSON_NX"
JETSON_ORIN_NANO = "JETSON_ORIN_NANO"
JETSON_ORIN_NX = "JETSON_ORIN_NX"
JETSON_THOR = "JETSON_THOR"
# Texas Instruments SK boards
TI_J721E_SK = "TI_J721E_SK"
@ -431,6 +432,14 @@ _JETSON_IDS = (
"nvidia,p3768-0000+p3767-0005-super",
),
),
(
JETSON_THOR,
(
"nvidia,p3971-0050+p3834-0005",
"nvidia,p3971-0080+p3834-0008",
"nvidia,p3971-0089+p3834-0008",
),
),
)
_TI_SK_BOARD_IDS = ((TI_J721E_SK, ("ti,j721e-sk", "ti,j721e")),)