File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -368,7 +368,8 @@ def _armbian_id(self) -> Optional[str]:
368
368
board = boards .PCDUINO2
369
369
elif board_value == "pcduino3" :
370
370
board = boards .PCDUINO3
371
-
371
+ elif board_value == "rock-3a" :
372
+ board = boards .ROCK_PI_3A
372
373
return board
373
374
374
375
# pylint: enable=too-many-return-statements
@@ -499,6 +500,8 @@ def _rk3568_id(self) -> Optional[str]:
499
500
board = None
500
501
if board_value and "LubanCat2" in board_value :
501
502
board = boards .LUBANCAT2
503
+ if board_value and "ROCK3 Model A" in board_value :
504
+ board = boards .ROCK_PI_3A
502
505
return board
503
506
504
507
def _rock_pi_id (self ) -> Optional [str ]:
@@ -517,6 +520,8 @@ def _rock_pi_id(self) -> Optional[str]:
517
520
board = boards .ROCK_PI_5
518
521
if board_value and "RADXA ROCK 4C+" in board_value .upper ():
519
522
board = boards .ROCK_PI_4_C_PLUS
523
+ if board_value and "ROCK3 Model A" in board_value :
524
+ board = boards .ROCK_PI_3A
520
525
return board
521
526
522
527
def _clockwork_pi_id (self ) -> Optional [str ]:
Original file line number Diff line number Diff line change 166
166
RADXA_ZERO = "RADXA_ZERO"
167
167
RADXA_CM3 = "RADXA_CM3"
168
168
169
+ ROCK_PI_3A = "ROCK_PI_3A"
169
170
ROCK_PI_S = "ROCK_PI_S"
170
171
ROCK_PI_4 = "ROCK_PI_4"
171
172
ROCK_PI_4_C_PLUS = "ROCK_PI_4C+"
550
551
RADXA_ZERO ,
551
552
ROCK_PI_5 ,
552
553
RADXA_CM3 ,
554
+ ROCK_PI_3A ,
553
555
)
554
556
555
557
# UDOO
You can’t perform that action at this time.
0 commit comments