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 @@ -448,6 +448,8 @@ def _armbian_id(self) -> Optional[str]:
448
448
board = boards .ORANGE_PI_5_PLUS
449
449
elif board_value == "orangepi5" :
450
450
board = boards .ORANGE_PI_5
451
+ elif board_value == "orangepi5-pro" :
452
+ board = boards .ORANGE_PI_5_PRO
451
453
elif board_value == "bananapim2zero" :
452
454
board = boards .BANANA_PI_M2_ZERO
453
455
elif board_value == "bananapim2plus" :
@@ -518,6 +520,8 @@ def _orange_pi_id(self) -> Optional[str]:
518
520
board_value = self .detector .get_device_model ()
519
521
if "OPi 5 Max" in board_value :
520
522
return boards .ORANGE_PI_5_MAX
523
+ if "OPi 5 Pro" in board_value :
524
+ return boards .ORANGE_PI_5_PRO
521
525
if "Orange Pi 5 Max" in board_value :
522
526
return boards .ORANGE_PI_5_MAX
523
527
if "Orange Pi 5 Plus" in board_value :
Original file line number Diff line number Diff line change 69
69
ORANGE_PI_5 = "ORANGE_PI_5"
70
70
ORANGE_PI_5_MAX = "ORANGE_PI_5_MAX"
71
71
ORANGE_PI_5_PLUS = "ORANGE_PI_5_PLUS"
72
+ ORANGE_PI_5_PRO = "ORANGE_PI_5_PRO"
72
73
73
74
# Nano Pi boards
74
75
NANOPI_NEO_AIR = "NANOPI_NEO_AIR"
314
315
ORANGE_PI_4_LTS ,
315
316
ORANGE_PI_5 ,
316
317
ORANGE_PI_5_PLUS ,
318
+ ORANGE_PI_5_PRO
317
319
)
318
320
319
321
# NanoPi
You can’t perform that action at this time.
0 commit comments