fix(firmware): correct bootloader version for FW 1.11.1#174
Merged
Conversation
vdovhanych
approved these changes
Jun 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fix a mistake in bootloader version definition for 1.11.1 firmware.
This value is now critically important since trezor/trezor-suite#29085, because it can cause false positives in FW revision check in Trezor Suite.
To be sure, I checked all versions from 1.8.0 and above, but found no inconsistency ✔️
Proof
This page states that downgrading from FW 1.11 to FW 1.10 is not possible, which makes it highly implausible that FW 1.11.1 would share BL 1.10 with FWs 1.10.x.
But most importantly I checked it in firmware repo:
→ when BL 1.11.0 was released, the current FW was 1.11.0
→ when FW 1.11.1 was released, the current BL was 1.11.0
No such inconsistency was found for FW >= 1.8.0.
TBH I could only reliably check FW >= 1.9.0, because the
legacy/bootloader/version.hfile did not exist before then, and I did not find any other file specifying BL version at 1.8.x.So I assumed if FW 1.9.x has BL 1.8.0, it makes sense that FW 1.8.x will have the same BL 1.8.0.