1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-20 06:49:14 +00:00
trezor-firmware/legacy/bootloader/combine/prepare.py

12 lines
301 B
Python
Raw Normal View History

#!/usr/bin/env python3
2017-02-04 10:20:58 +00:00
bl = open("bl.bin", "rb").read()
fw = open("fw.bin", "rb").read()
combined = bl + 32768 * b"\xff" + fw
2014-10-23 16:09:41 +00:00
open("combined.bin", "wb").write(combined)
2014-10-23 16:09:41 +00:00
print("bootloader : %d bytes" % len(bl))
print("firmware : %d bytes" % len(fw))
print("combined : %d bytes" % len(combined))