File tree 4 files changed +8
-0
lines changed
4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,8 @@ def id(self):
129
129
board_id = self ._pine64_id ()
130
130
elif chip_id == chips .H5 :
131
131
board_id = self ._armbian_id ()
132
+ elif chip_id == chips .H616 :
133
+ board_id = self ._armbian_id ()
132
134
elif chip_id == chips .A33 :
133
135
board_id = self ._clockwork_pi_id ()
134
136
elif chip_id == chips .RK3308 :
Original file line number Diff line number Diff line change @@ -156,6 +156,9 @@ def _linux_id(self):
156
156
if self .detector .check_dt_compatible_value ("sun50i-h5" ):
157
157
return chips .H5
158
158
159
+ if self .detector .check_dt_compatible_value ("sun50iw9" ):
160
+ return chips .H616
161
+
159
162
if self .detector .check_dt_compatible_value ("mediatek,mt8167" ):
160
163
return chips .MT8167
161
164
Original file line number Diff line number Diff line change 42
42
ORANGE_PI_2 = "ORANGE_PI_2"
43
43
ORANGE_PI_ZERO_PLUS_2H5 = "ORANGE_PI_ZERO_PLUS_2H5"
44
44
ORANGE_PI_ZERO_PLUS = "ORANGE_PI_ZERO_PLUS"
45
+ ORANGE_PI_ZERO_2 = "ORANGE_PI_ZERO_2"
45
46
46
47
# Nano Pi boards
47
48
NANOPI_NEO_AIR = "NANOPI_NEO_AIR"
149
150
ORANGE_PI_2 ,
150
151
ORANGE_PI_ZERO_PLUS_2H5 ,
151
152
ORANGE_PI_ZERO_PLUS ,
153
+ ORANGE_PI_ZERO_2 ,
152
154
)
153
155
154
156
# NanoPi
Original file line number Diff line number Diff line change 31
31
H6 = "H6"
32
32
A33 = "A33"
33
33
H5 = "H5"
34
+ H616 = "H616"
34
35
RK3308 = "RK3308"
35
36
LPC4330 = "LPC4330"
36
37
RK3288 = "RK3288"
You can’t perform that action at this time.
0 commit comments