build: add T3W1 model to build-docker.sh
What changed, and why it matters
This commit simply adds a new hardware model code (T3W1) to the list of default models in a build helper script. It changes two lines: the help text and the default model array. There is no security-relevant change visible in the diff.
No security action required. Treat as routine build-system maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch updates build-docker.sh to include T3W1 in the default comma-separated model list and in the MODELS bash array. No build logic, cryptographic code, firmware image handling, or authentication checks are modified. It is a build-system configuration update for a new product variant.
Changed components
build-docker.shInspect captured patch +2 / −2
diff --git a/build-docker.sh b/build-docker.sh
index ad34df062..30d4384b5 100755
--- a/build-docker.sh
+++ b/build-docker.sh
@@ -52,7 +52,7 @@ function help_and_die() {
echo " --skip-normal - do not build regular firmwares"
echo " --repository path/to/repo - checkout the repository from the given path/url"
echo " --no-init - do not recreate docker environments"
- echo " --models - comma-separated list of models. default: --models T1B1,T2B1,T2T1,T3T1"
+ echo " --models - comma-separated list of models. default: --models T1B1,T2B1,T2T1,T3T1,T3W1"
echo " --targets - comma-separated list of targets for core build. default: --targets boardloader,bootloader,firmware"
echo " --nrf - build nRF bootloader and firmware (for bluetooth devices, i.e. T3W1)"
echo " --help"
@@ -67,7 +67,7 @@ OPT_BUILD_NORMAL=1
OPT_BUILD_BITCOINONLY=1
OPT_BUILD_NRF=0
INIT=1
-MODELS=(T1B1 T2B1 T2T1 T3T1)
+MODELS=(T1B1 T2B1 T2T1 T3T1 T3W1)
CORE_TARGETS=(boardloader bootloader firmware)
REPOSITORY="file:///local"
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.