1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 19:09:10 +00:00
trezor-firmware/legacy/bootloader/combine/prepare.py
2019-04-18 17:40:55 +02:00

13 lines
349 B
Python
Executable File

#!/usr/bin/env python
from __future__ import print_function
bl = open("bl.bin").read()
fw = open("fw.bin").read()
combined = bl + fw[:256] + (32768 - 256) * "\x00" + fw[256:]
open("combined.bin", "w").write(combined)
print("bootloader : %d bytes" % len(bl))
print("firmware : %d bytes" % len(fw))
print("combined : %d bytes" % len(combined))