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 @@ -428,6 +428,8 @@ def _armbian_id(self) -> Optional[str]:
428
428
board = boards .PCDUINO3
429
429
elif board_value == "rock-3a" :
430
430
board = boards .ROCK_PI_3A
431
+ elif board_value == "radxa-zero3" :
432
+ board = boards .RADXA_ZERO3
431
433
elif board_value == "repka-pi3-h5" :
432
434
board = boards .REPKA_PI_3_H5
433
435
elif board_value == "repka-pi4-h6" :
@@ -577,6 +579,8 @@ def _rk3566_id(self) -> Optional[str]:
577
579
board = boards .LUBANCAT1
578
580
if board_value and "Radxa CM3 IO" in board_value :
579
581
board = boards .RADXA_CM3
582
+ if board_value and "Radxa ZERO 3" in board_value :
583
+ board = boards .RADXA_ZERO3
580
584
if board_value and "Radxa ROCK3 Model C" in board_value :
581
585
board = boards .ROCK_PI_3C
582
586
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"
529
530
ROCK_PI_X ,
530
531
ROCK_PI_E ,
531
532
RADXA_ZERO ,
533
+ RADXA_ZERO3 ,
532
534
ROCK_PI_5 ,
533
535
RADXA_CM3 ,
534
536
ROCK_PI_3A ,
You can’t perform that action at this time.
0 commit comments