Skip to content

Commit

Permalink
chore: more overflows
Browse files Browse the repository at this point in the history
  • Loading branch information
pfeerick committed May 12, 2024
1 parent dfa8910 commit 117ddf0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build-firmwares-bluetooth-heli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ TARGET_NAMES_BW=("x9dp2019" "t8" "tlite" "tpro" "tx12"
"tx12mk2" "x7" "x7-access" "x9d" "x9dp"
"x9e" "x9e-hall" "x9lite" "x9lites" "xlite"
"xlites" "zorro" "commando8" "lr3pro" "t12"
"pocket" "mt12" "t20" "t20v2" "t14")
"pocket" "mt12" "t20" "t20v2" "t14" tprov2)

TARGET_BLUETOOTH_ENABLED=("x7" "x7-access" "xlite" "x9lites" "x9dp2019"
"t16" "t18" "tx16s" "x10" "x10-access" "x12s" "boxer" "tx12" "tx12mk2" "zorro")
Expand Down
2 changes: 1 addition & 1 deletion build-firmwares-bluetooth.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ TARGET_NAMES_BW=("x9dp2019" "t8" "tlite" "tpro" "tx12"
"tx12mk2" "x7" "x7-access" "x9d" "x9dp"
"x9e" "x9e-hall" "x9lite" "x9lites" "xlite"
"xlites" "zorro" "commando8" "lr3pro" "t12"
"pocket" "mt12" "t20" "t20v2" "t14")
"pocket" "mt12" "t20" "t20v2" "t14" tprov2)

TARGET_BLUETOOTH_ENABLED=("x7" "x7-access" "xlite" "x9lites" "x9dp2019"
"t16" "t18" "tx16s" "x10" "x10-access" "x12s" "boxer" "tx12" "tx12mk2" "zorro")
Expand Down
2 changes: 1 addition & 1 deletion build-firmwares-heli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ TARGET_NAMES_BW=("x9dp2019" "t8" "tlite" "tpro" "tx12"
"tx12mk2" "x7" "x7-access" "x9d" "x9dp"
"x9e" "x9e-hall" "x9lite" "x9lites" "xlite"
"xlites" "zorro" "commando8" "lr3pro" "t12"
"pocket" "mt12" "t20" "t20v2" "t14")
"pocket" "mt12" "t20" "t20v2" "t14" tprov2)

# Voice menu only: SK HU
#LANGUAGES_ALL=(CN CZ DA DE EN ES FI FR HE IT JP NL PL PT RU SE TW UA)
Expand Down
8 changes: 6 additions & 2 deletions build-firmwares-luamixer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ TARGET_NAMES_BW=("x9dp2019" "t8" "tlite" "tpro" "tx12"
"tx12mk2" "x7" "x7-access" "x9d" "x9dp"
"x9e" "x9e-hall" "x9lite" "x9lites" "xlite"
"xlites" "zorro" "commando8" "lr3pro" "t12"
"pocket" "mt12" "t20" "t20v2" "t14")
"pocket" "mt12" "t20" "t20v2" "t14" tprov2)

# Voice menu only: SK HU
#LANGUAGES_ALL=(CN CZ DA DE EN ES FI FR HE IT JP NL PL PT RU SE TW UA)
Expand Down Expand Up @@ -45,7 +45,11 @@ for target in $target_names; do
if [[ ${TARGET_NAMES_BW[*]} =~ $re ]]; then
for lang in "${LANGUAGES_BW[@]}"; do
if [[ "${target}" =~ "x9dp2019" && "${lang}" == "CZ" ]]; then continue; fi # x9d+2019 CZ overflow
if [[ "${target}" =~ "zorro" && "${lang}" == "RU" ]]; then continue; fi # zorro RU overflow
if [[ "${target}" =~ "zorro" && "${lang}" == "RU" ]]; then continue; fi # STM32F407xE RU overflow
if [[ "${target}" =~ "tx12mk2" && "${lang}" == "RU" ]]; then continue; fi # STM32F407xE RU overflow
if [[ "${target}" =~ "pocket" && "${lang}" == "RU" ]]; then continue; fi # STM32F407xE RU overflow
if [[ "${target}" =~ "commando8" && "${lang}" == "RU" ]]; then continue; fi # STM32F407xE RU overflow
if [[ "${target}" =~ "x9e" && "${lang}" == "RU" ]]; then continue; fi # STM32F407xE RU overflow
SRCDIR=${SRC_DIR} FLAVOR=${target} EXTRA_OPTIONS="-DTRANSLATIONS=${lang} -DLUA_MIXER=Y " "${SRC_DIR}/tools/build-gh.sh"
mv "${fw_name}" "${target}-${lang}-luamixer-${GIT_SHA_SHORT}.bin"
done
Expand Down
2 changes: 1 addition & 1 deletion build-firmwares.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ TARGET_NAMES_BW=("x9dp2019" "t8" "tlite" "tpro" "tx12"
"tx12mk2" "x7" "x7-access" "x9d" "x9dp"
"x9e" "x9e-hall" "x9lite" "x9lites" "xlite"
"xlites" "zorro" "commando8" "lr3pro" "t12"
"pocket" "mt12" "t20" "t20v2" "t14")
"pocket" "mt12" "t20" "t20v2" "t14" tprov2)

# Voice menu only: SK HU
#LANGUAGES_ALL=(CN CZ DA DE EN ES FI FR IT JP PT SE TW PL NL)
Expand Down

0 comments on commit 117ddf0

Please sign in to comment.