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 168ff6b + 4efebcf commit ffef1f3Copy full SHA for ffef1f3
adafruit_platformdetect/board.py
@@ -256,6 +256,8 @@ def _armbian_id(self):
256
board = boards.ORANGE_PI_2
257
if board_value == "bananapim2zero":
258
board = boards.BANANA_PI_M2_ZERO
259
+ if board_value == "orangepizeroplus2-h5":
260
+ board = boards.ORANGE_PI_ZERO_PLUS_2H5
261
262
return board
263
adafruit_platformdetect/chip.py
@@ -153,6 +153,9 @@ def _linux_id(self):
153
if self.detector.check_dt_compatible_value("sun50i-a64"):
154
return chips.A64
155
156
+ if self.detector.check_dt_compatible_value("sun50i-h5"):
157
+ return chips.H5
158
+
159
if self.detector.check_dt_compatible_value("mediatek,mt8167"):
160
return chips.MT8167
161
0 commit comments