File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -426,6 +426,8 @@ def _armbian_id(self) -> Optional[str]:
426
426
board = boards .PCDUINO3
427
427
elif board_value == "rock-3a" :
428
428
board = boards .ROCK_PI_3A
429
+ elif board_value == "radxa-zero3" :
430
+ board = boards .RADXA_ZERO3
429
431
elif board_value == "repka-pi3-h5" :
430
432
board = boards .REPKA_PI_3_H5
431
433
elif board_value == "repka-pi4-h6" :
@@ -575,6 +577,8 @@ def _rk3566_id(self) -> Optional[str]:
575
577
board = boards .LUBANCAT1
576
578
if board_value and "Radxa CM3 IO" in board_value :
577
579
board = boards .RADXA_CM3
580
+ if board_value and "Radxa ZERO 3" in board_value :
581
+ board = boards .RADXA_ZERO3
578
582
if board_value and "Radxa ROCK3 Model C" in board_value :
579
583
board = boards .ROCK_PI_3C
580
584
if board_value and "Rockchip RK3566 OPi 3B" in board_value :
Original file line number Diff line number Diff line change 192
192
QUARTZ64_A = "QUARTZ64_A"
193
193
194
194
RADXA_ZERO = "RADXA_ZERO"
195
+ RADXA_ZERO3 = "RADXA_ZERO3"
195
196
RADXA_CM3 = "RADXA_CM3"
196
197
197
198
ROCK_PI_3A = "ROCK_PI_3A"
526
527
ROCK_PI_X ,
527
528
ROCK_PI_E ,
528
529
RADXA_ZERO ,
530
+ RADXA_ZERO3 ,
529
531
ROCK_PI_5 ,
530
532
RADXA_CM3 ,
531
533
ROCK_PI_3A ,
You can’t perform that action at this time.
0 commit comments