@@ -702,7 +702,7 @@ def _allwinner_variants_id(self) -> Optional[str]:
702
702
# TODO: Add other specifc board contexts here
703
703
704
704
elif "lime2" in board_value :
705
- board = boards .LIME2
705
+ board = boards .OLIMEX_LIME2
706
706
return board
707
707
708
708
# pylint: disable=too-many-return-statements
@@ -931,9 +931,9 @@ def any_nxp_navq_board(self) -> bool:
931
931
return self .id in boards ._NXP_SOM_IDS
932
932
933
933
@property
934
- def any_lime2_board (self ):
934
+ def any_olimex_lime2_board (self ):
935
935
"""Check whether the current board is any Pine64 device."""
936
- return self .id in boards .LIME2
936
+ return self .id in boards .OLIMEX_LIME2
937
937
938
938
@property
939
939
def os_environ_board (self ) -> bool :
@@ -955,7 +955,6 @@ def lazily_generate_conditions():
955
955
yield self .board .QTPY_U2IF
956
956
yield self .board .QT2040_TRINKEY_U2IF
957
957
yield self .board .KB2040_U2IF
958
- yield self .board .lime2
959
958
960
959
return any (condition for condition in lazily_generate_conditions ())
961
960
@@ -998,7 +997,7 @@ def lazily_generate_conditions():
998
997
yield self .generic_linux
999
998
yield self .any_nxp_navq_board
1000
999
yield self .any_walnutpi
1001
- yield self .any_lime2_board
1000
+ yield self .any_olimex_lime2_board
1002
1001
1003
1002
return any (condition for condition in lazily_generate_conditions ())
1004
1003
0 commit comments