File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -662,6 +662,11 @@ def any_tisk_board(self) -> bool:
662
662
"""Check whether the current board is any defined TI SK Board."""
663
663
return self .id in [v [0 ] for v in boards ._TI_SK_BOARD_IDS ]
664
664
665
+ @property
666
+ def any_lichee_riscv_board (self ) -> bool :
667
+ """Check whether the current board is any defined TI SK Board."""
668
+ return self .id in [v [0 ] for v in boards ._LICHEE_RISCV_IDS ]
669
+
665
670
@property
666
671
def any_embedded_linux (self ) -> bool :
667
672
"""Check whether the current board is any embedded Linux device."""
@@ -691,6 +696,7 @@ def any_embedded_linux(self) -> bool:
691
696
self .any_bananapi ,
692
697
self .any_maaxboard ,
693
698
self .any_tisk_board ,
699
+ self .any_lichee_riscv_board ,
694
700
]
695
701
)
696
702
You can’t perform that action at this time.
0 commit comments