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 @@ -468,6 +468,8 @@ def _armbian_id(self) -> Optional[str]:
468
468
board = boards .PCDUINO3
469
469
elif board_value == "rock-3a" :
470
470
board = boards .ROCK_PI_3A
471
+ elif board_value == "rock-3b" :
472
+ board = boards .ROCK_PI_3B
471
473
elif board_value == "radxa-zero3" :
472
474
board = boards .RADXA_ZERO3
473
475
elif board_value == "repka-pi3-h5" :
@@ -645,6 +647,8 @@ def _rk3568_id(self) -> Optional[str]:
645
647
board = boards .LUBANCAT2
646
648
if board_value and "ROCK3 Model A" in board_value :
647
649
board = boards .ROCK_PI_3A
650
+ if board_value and "ROCK 3 Model B" in board_value :
651
+ board = boards .ROCK_PI_3B
648
652
if board_value and "Hardkernel ODROID-M1" in board_value :
649
653
board = boards .ODROID_M1
650
654
return board
@@ -681,6 +685,8 @@ def _rock_pi_id(self) -> Optional[str]:
681
685
board = boards .ROCK_PI_4_SE
682
686
if board_value and "ROCK3 Model A" in board_value :
683
687
board = boards .ROCK_PI_3A
688
+ if board_value and "ROCK 3 Model B" in board_value :
689
+ board = boards .ROCK_PI_3B
684
690
return board
685
691
686
692
def _libre_id (self ) -> Optional [str ]:
Original file line number Diff line number Diff line change 208
208
RADXA_CM3 = "RADXA_CM3"
209
209
210
210
ROCK_PI_3A = "ROCK_PI_3A"
211
+ ROCK_PI_3B = "ROCK_PI_3B"
211
212
ROCK_PI_3C = "ROCK_PI_3C"
212
213
ROCK_PI_S = "ROCK_PI_S"
213
214
ROCK_PI_4 = "ROCK_PI_4"
601
602
ROCK_PI_5C ,
602
603
RADXA_CM3 ,
603
604
ROCK_PI_3A ,
605
+ ROCK_PI_3B ,
604
606
ROCK_PI_3C ,
605
607
)
606
608
You can’t perform that action at this time.
0 commit comments