File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -1022,9 +1022,9 @@ def any_nxp_navq_board(self) -> bool:
1022
1022
return self .id in boards ._NXP_SOM_IDS
1023
1023
1024
1024
@property
1025
- def any_olimex_lime2_board (self ):
1025
+ def any_olimex_board (self ):
1026
1026
"""Check whether the current board is any Pine64 device."""
1027
- return self .id in boards .OLIMEX_LIME2
1027
+ return self .id in boards ._OLIMEX_IDS
1028
1028
1029
1029
@property
1030
1030
def any_repka_board (self ):
@@ -1099,7 +1099,7 @@ def lazily_generate_conditions():
1099
1099
yield self .generic_linux
1100
1100
yield self .any_nxp_navq_board
1101
1101
yield self .any_walnutpi
1102
- yield self .any_olimex_lime2_board
1102
+ yield self .any_olimex_board
1103
1103
yield self .any_repka_board
1104
1104
yield self .any_milkv_board
1105
1105
yield self .any_luckfox_pico_board
Original file line number Diff line number Diff line change 455
455
456
456
_SIFIVE_IDS = (SIFIVE_UNLEASHED ,)
457
457
458
+ _OLIMEX_IDS = (OLIMEX_LIME2 ,)
459
+
458
460
# BeagleBone eeprom board ids from:
459
461
# https://github.com/beagleboard/image-builder
460
462
# Thanks to zmatt on freenode #beagle for pointers.
You can’t perform that action at this time.
0 commit comments