File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -336,9 +336,9 @@ def _stm32mp1_id(self):
336
336
def _imx8mx_id (self ):
337
337
"""Check what type iMX8M board."""
338
338
board_value = self .detector .get_device_model ()
339
- if "i.MX8MM" in board_value :
339
+ if "FSL i.MX8MM DDR4 EVK " in board_value :
340
340
return boards .MAAXBOARD_MINI
341
- if "i.MX8MQ" in board_value :
341
+ if "Freescale i.MX8MQ EVK " in board_value :
342
342
return boards .MAAXBOARD
343
343
if "Phanbell" in board_value :
344
344
return boards .CORAL_EDGE_TPU_DEV
@@ -610,6 +610,11 @@ def any_bananapi(self):
610
610
"""Check whether the current board is any BananaPi-family system."""
611
611
return self .id in boards ._BANANA_PI_IDS
612
612
613
+ @property
614
+ def any_maaxboard (self ):
615
+ """Check whether the current board is any BananaPi-family system."""
616
+ return self .id in boards ._MAAXBOARD_IDS
617
+
613
618
@property
614
619
def any_embedded_linux (self ):
615
620
"""Check whether the current board is any embedded Linux device."""
@@ -636,6 +641,7 @@ def any_embedded_linux(self):
636
641
self .any_stm32mp1 ,
637
642
self .any_lubancat ,
638
643
self .any_bananapi ,
644
+ self .any_maaxboard ,
639
645
]
640
646
)
641
647
Original file line number Diff line number Diff line change 463
463
_UDOO_BOARD_IDS = {UDOO_BOLT_V8 : ("SC40-2000-0000-C0|C" ,), UDOO_X86 : ("dummy" ,)}
464
464
465
465
# MaaXBoard boards
466
- _MAAXBOARD_DEV_IDS = ("MAAXBOARD" , "MAAXBOARD_MINI" )
466
+ _MAAXBOARD_IDS = ("MAAXBOARD" , "MAAXBOARD_MINI" )
You can’t perform that action at this time.
0 commit comments