File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -306,6 +306,8 @@ def _armbian_id(self) -> Optional[str]:
306
306
board = boards .ORANGE_PI_2
307
307
elif board_value == "orangepi3" :
308
308
board = boards .ORANGE_PI_3
309
+ elif board_value == "orangepi3-lts" :
310
+ board = boards .ORANGE_PI_3_LTS
309
311
elif board_value == "bananapim2zero" :
310
312
board = boards .BANANA_PI_M2_ZERO
311
313
elif board_value == "orangepizeroplus2-h5" :
Original file line number Diff line number Diff line change 50
50
ORANGE_PI_ZERO_PLUS = "ORANGE_PI_ZERO_PLUS"
51
51
ORANGE_PI_ZERO_2 = "ORANGE_PI_ZERO_2"
52
52
ORANGE_PI_3 = "ORANGE_PI_3"
53
+ ORANGE_PI_3_LTS = "ORANGE_PI_3_LTS"
53
54
54
55
# Nano Pi boards
55
56
NANOPI_NEO_AIR = "NANOPI_NEO_AIR"
187
188
ORANGE_PI_ZERO_PLUS ,
188
189
ORANGE_PI_ZERO_2 ,
189
190
ORANGE_PI_3 ,
191
+ ORANGE_PI_3_LTS ,
190
192
)
191
193
192
194
# NanoPi
Original file line number Diff line number Diff line change 58
58
#
59
59
# This is also used if you do content translation via gettext catalogs.
60
60
# Usually you set "language" from the command line for these cases.
61
- language = None
61
+ language = "en"
62
62
63
63
# List of patterns, relative to source directory, that match files and
64
64
# directories to ignore when looking for source files.
You can’t perform that action at this time.
0 commit comments