File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -386,6 +386,8 @@ def _armbian_id(self) -> Optional[str]:
386
386
board = boards .ORANGE_PI_4_LTS
387
387
elif board_value == "orangepi5" :
388
388
board = boards .ORANGE_PI_5
389
+ elif board_value == "orangepi5-plus" :
390
+ board = boards .ORANGE_PI_5_PLUS
389
391
elif board_value == "bananapim2zero" :
390
392
board = boards .BANANA_PI_M2_ZERO
391
393
elif board_value == "bananapim2plus" :
@@ -432,6 +434,8 @@ def _orange_pi_id(self) -> Optional[str]:
432
434
board_value = self .detector .get_device_model ()
433
435
if "Orange Pi 5" in board_value :
434
436
return boards .ORANGE_PI_5
437
+ if "Orange Pi 5 Plus" in board_value :
438
+ return boards .ORANGE_PI_5_PLUS
435
439
if "Orange Pi 3B" in board_value :
436
440
return boards .ORANGE_PI_3B
437
441
return None
You can’t perform that action at this time.
0 commit comments