File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -99,8 +99,6 @@ def id(self) -> Optional[str]:
99
99
board_id = boards .RASPBERRY_PI_PICO
100
100
elif chip_id == chips .S805 :
101
101
board_id = boards .ODROID_C1
102
- elif chip_id == chips .RK3568B2 :
103
- board_id = boards .ODROID_M1
104
102
elif chip_id == chips .S905 :
105
103
board_id = boards .ODROID_C2
106
104
elif chip_id == chips .S905X3 :
@@ -577,6 +575,8 @@ def _rk3568_id(self) -> Optional[str]:
577
575
board = boards .LUBANCAT2
578
576
if board_value and "ROCK3 Model A" in board_value :
579
577
board = boards .ROCK_PI_3A
578
+ if board_value and "Hardkernel ODROID-M1" in board_value :
579
+ board = boards .ODROID_M1
580
580
return board
581
581
582
582
def _rk3588_id (self ) -> Optional [str ]:
Original file line number Diff line number Diff line change @@ -245,9 +245,6 @@ def _linux_id(self) -> Optional[str]:
245
245
if self .detector .check_dt_compatible_value ("rockchip,rk3568" ):
246
246
return chips .RK3568
247
247
248
- if self .detector .check_dt_compatible_value ("rockchip,rk3568b2" ):
249
- return chips .RK3568B2
250
-
251
248
if self .detector .check_dt_compatible_value ("rockchip,rk3588" ):
252
249
return chips .RK3588
253
250
Original file line number Diff line number Diff line change 61
61
RK3288 = "RK3288"
62
62
RK3566 = "RK3566"
63
63
RK3568 = "RK3568"
64
- RK3568B2 = "RK3568B2"
65
64
RK3588 = "RK3588"
66
65
PENTIUM_N3710 = "PENTIUM_N3710" # SOC Braswell core
67
66
CELERON_N5105 = "CELERON_N5105"
You can’t perform that action at this time.
0 commit comments