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.
2 parents bf1cb10 + 9a32720 commit 0afa93dCopy full SHA for 0afa93d
adafruit_platformdetect/chip.py
@@ -392,6 +392,8 @@ def _linux_id(self) -> Optional[str]:
392
linux_id = chips.T194
393
elif "nvidia,tegra234" in compats:
394
linux_id = chips.T234
395
+ elif "nvidia,tegra264" in compats:
396
+ linux_id = chips.T264
397
if compatible and "imx8m" in compatible:
398
linux_id = chips.IMX8MX
399
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