File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -246,6 +246,8 @@ def _armbian_id(self):
246
246
board = boards .PINEBOOK
247
247
if board_value == "orangepi2" :
248
248
board = boards .ORANGE_PI_2
249
+ if board_value == "bananapim2zero" :
250
+ board = boards .BANANA_PI_M2_ZERO
249
251
250
252
return board
251
253
Original file line number Diff line number Diff line change 39
39
ORANGE_PI_PLUS_2E = "ORANGE_PI_PLUS_2E"
40
40
ORANGE_PI_2 = "ORANGE_PI_2"
41
41
42
+ # Banana Pi boards
43
+ BANANA_PI_M2_ZERO = "BANANA_PI_M2_ZERO"
44
+
42
45
# NVIDIA Jetson boards
43
46
JETSON_TX1 = "JETSON_TX1"
44
47
JETSON_TX2 = "JETSON_TX2"
125
128
ORANGE_PI_2 ,
126
129
)
127
130
131
+ # BananaPI
132
+ _BANANA_PI_IDS = (BANANA_PI_M2_ZERO ,)
133
+
128
134
_CORAL_IDS = (CORAL_EDGE_TPU_DEV ,)
129
135
130
136
_PYNQ_IDS = (PYNQ_Z1 , PYNQ_Z2 )
You can’t perform that action at this time.
0 commit comments