File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -398,6 +398,8 @@ def _armbian_id(self) -> Optional[str]:
398
398
board = boards .NANOPI_DUO2
399
399
elif board_value == "nanopineo" :
400
400
board = boards .NANOPI_NEO
401
+ elif board_value == "nanopineo2" :
402
+ board = boards .NANOPI_NEO_2
401
403
elif board_value == "nezha" :
402
404
board = boards .LICHEE_RV
403
405
elif board_value == "pcduino2" :
@@ -663,6 +665,8 @@ def _allwinner_variants_id(self) -> Optional[str]:
663
665
if "nanopi" in board_value :
664
666
if "neo" in board_value and "SUN8I" in chip_id :
665
667
board = boards .NANOPI_NEO_AIR
668
+ elif "neo2" in board_value and "H5" in chip_id :
669
+ board = boards .NANOPI_NEO_2
666
670
elif any (x in board_value for x in ("orange pi" , "orangepi" )):
667
671
if "zero" in board_value :
668
672
if "H5" in chip_id :
Original file line number Diff line number Diff line change 63
63
NANOPI_NEO_AIR = "NANOPI_NEO_AIR"
64
64
NANOPI_DUO2 = "NANOPI_DUO2"
65
65
NANOPI_NEO = "NANOPI_NEO"
66
+ NANOPI_NEO_2 = "NANOPI_NEO_2"
67
+
66
68
67
69
# Banana Pi boards
68
70
BANANA_PI_M2_ZERO = "BANANA_PI_M2_ZERO"
250
252
NANOPI_NEO_AIR ,
251
253
NANOPI_DUO2 ,
252
254
NANOPI_NEO ,
255
+ NANOPI_NEO_2 ,
253
256
)
254
257
255
258
# BananaPI
You can’t perform that action at this time.
0 commit comments