We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba31c3c commit 9a32720Copy full SHA for 9a32720
adafruit_platformdetect/chip.py
@@ -386,6 +386,8 @@ def _linux_id(self) -> Optional[str]:
386
linux_id = chips.T194
387
elif "nvidia,tegra234" in compats:
388
linux_id = chips.T234
389
+ elif "nvidia,tegra264" in compats:
390
+ linux_id = chips.T264
391
if compatible and "imx8m" in compatible:
392
linux_id = chips.IMX8MX
393
if compatible and "odroid-c2" in compatible:
adafruit_platformdetect/constants/chips.py
@@ -34,6 +34,7 @@
34
T186 = "T186"
35
T194 = "T194"
36
T234 = "T234"
37
+T264 = "T264"
38
APQ8016 = "APQ8016"
39
GENERIC_X86 = "GENERIC_X86"
40
FT232H = "FT232H"
0 commit comments