File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,8 @@ def id(self):
114
114
elif chip_id == chips .HFU540 :
115
115
board_id = self ._sifive_id ()
116
116
elif chip_id == chips .C906 :
117
+ board_id = self .__beaglebone_id ()
118
+ elif chip_id == chips .VICU7 :
117
119
board_id = self ._allwinner_id ()
118
120
elif chip_id == chips .VICU7 :
119
121
board_id = self .__beaglebone_id ()
@@ -243,9 +245,20 @@ def _beaglebone_id(self):
243
245
return model
244
246
245
247
board_value = self .detector .get_armbian_release_field ("BOARD" )
248
+ < << << << HEAD
246
249
247
250
if board_value == "freedom-u74-arty" :
248
251
return boards .BEAGLEV_STARFIV
252
+ == == == =
253
+ board = None
254
+
255
+ if board_value == "freedom-u74-arty" :
256
+ board = boards .BEAGLEV_STARFIV
257
+
258
+ if self .detector .chip .id != chips .BCi :
259
+ # Something else, not a Pi.
260
+ return None
261
+ > >> >> >> d720af9 ... Adding support for the BeagleV Starfive , chip VIC - U7
249
262
250
263
return None
251
264
You can’t perform that action at this time.
0 commit comments