Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions adafruit_platformdetect/chip.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,8 @@ def _linux_id(self) -> Optional[str]:
linux_id = chips.T194
elif "nvidia,tegra234" in compats:
linux_id = chips.T234
elif "nvidia,tegra264" in compats:
linux_id = chips.T264
if compatible and "imx8m" in compatible:
linux_id = chips.IMX8MX
if compatible and "odroid-c2" in compatible:
Expand Down
1 change: 1 addition & 0 deletions adafruit_platformdetect/constants/chips.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
T186 = "T186"
T194 = "T194"
T234 = "T234"
T264 = "T264"
APQ8016 = "APQ8016"
GENERIC_X86 = "GENERIC_X86"
FT232H = "FT232H"
Expand Down
Loading