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 bcb2448 + 1fa338d commit 5423a45Copy full SHA for 5423a45
adafruit_platformdetect/chip.py
@@ -150,6 +150,9 @@ def _linux_id(self):
150
if self.detector.check_dt_compatible_value("st,stm32mp157"):
151
return chips.STM32MP157
152
153
+ if self.detector.check_dt_compatible_value("sun50i-a64"):
154
+ return chips.A64
155
+
156
linux_id = None
157
hardware = self.detector.get_cpuinfo_field("Hardware")
158
@@ -237,8 +240,6 @@ def _linux_id(self):
237
240
linux_id = chips.SAMA5
238
241
elif "Pinebook" in hardware:
239
242
linux_id = chips.A64
- elif "sun50iw1p1" in hardware:
- linux_id = chips.A64
243
elif "ASUS_TINKER_BOARD" in hardware:
244
linux_id = chips.RK3288
245
elif "Xilinx Zynq" in hardware:
0 commit comments