File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -337,7 +337,6 @@ def _tisk_id(self) -> Optional[str]:
337
337
def _armbian_id (self ) -> Optional [str ]:
338
338
"""Check whether the current board is an OrangePi board."""
339
339
board_value = self .detector .get_armbian_release_field ("BOARD" )
340
- print (self .detector .get_device_model ())
341
340
board = None
342
341
343
342
if board_value == "orangepipc" :
@@ -637,6 +636,10 @@ def _allwinner_variants_id(self) -> Optional[str]:
637
636
return board
638
637
board_value = board_value .lower ()
639
638
chip_id = self .detector .chip .id
639
+
640
+ if "banana pi m2 berry" in board_value :
641
+ board = boards .BANANA_PI_M2_BERRY
642
+
640
643
if "nanopi" in board_value :
641
644
if "neo" in board_value and "SUN8I" in chip_id :
642
645
board = boards .NANOPI_NEO_AIR
You can’t perform that action at this time.
0 commit comments