Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ has been automated using Docker. Steps are as follows:
```shell
git clone https://github.com/Coldcard/firmware.git
cd firmware
git submodule update --init
# DOWNLOAD https://coldcard.com/downloads
# get a copy of binary into ./releases/2026-03-05T2052-v5.5.0-mk-coldcard.dfu
git checkout 2026-03-05T2052-v5.5.0
# get a copy of binary into ./releases/2026-07-01T1729-v5.5.1-mk-coldcard.dfu
git checkout 2026-07-01T1730-v5.5.1
cd stm32
make -f MK4-Makefile repro
make -f MK-Makefile repro
```

4. At the end of the process a clear confirmation message is shown, or the differences.
Expand Down
1 change: 1 addition & 0 deletions stm32/shared.mk
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ ifeq ($(PUBLISHED_BIN),)
@echo ""
else
@echo Comparing against: $(PUBLISHED_BIN)
@echo SHA256: $$(sha256sum $(PUBLISHED_BIN))
test -n "$(PUBLISHED_BIN)" -a -f $(PUBLISHED_BIN)
$(RM) -f check-fw.bin check-bootrom.bin
$(SIGNIT) split $(PUBLISHED_BIN) check-fw.bin check-bootrom.bin
Expand Down