File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -730,6 +730,8 @@ def _allwinner_variants_id(self) -> Optional[str]:
730
730
board = boards .ORANGE_PI_ZERO_PLUS_2H5
731
731
elif "H616" in chip_id :
732
732
board = boards .ORANGE_PI_ZERO_2
733
+ elif "walnutpi-1b-emmc" in board_value :
734
+ board = boards .WALNUT_PI_1B_EMMC
733
735
elif "walnutpi-1b" in board_value :
734
736
board = boards .WALNUT_PI_1B
735
737
# TODO: Add other specifc board contexts here
Original file line number Diff line number Diff line change 40
40
41
41
# Walnut Pi boards
42
42
WALNUT_PI_1B = "WALNUT_PI_1B"
43
+ WALNUT_PI_1B_EMMC = "WALNUT_PI_1B_EMMC"
43
44
44
45
# Clockwork Pi boards
45
46
CLOCKWORK_CPI3 = "CLOCKWORK_CPI3"
238
239
)
239
240
240
241
# WalnutPi
241
- _WALNUT_PI_IDS = (WALNUT_PI_1B ,)
242
+ _WALNUT_PI_IDS = (
243
+ WALNUT_PI_1B ,
244
+ WALNUT_PI_1B_EMMC ,
245
+ )
242
246
243
247
# STM32MP1
244
248
_STM32MP1_IDS = (
You can’t perform that action at this time.
0 commit comments