1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 03:19:05 +00:00
trezor-firmware/legacy/bootloader/firmware_align.py

18 lines
353 B
Python
Raw Normal View History

#!/usr/bin/env python3
2014-10-23 16:09:41 +00:00
import os
import sys
2014-10-23 16:09:41 +00:00
2019-02-21 14:18:00 +00:00
TOTALSIZE = 32768
MAXSIZE = TOTALSIZE - 32
2014-10-23 16:09:41 +00:00
fn = sys.argv[1]
fs = os.stat(fn).st_size
2019-02-21 14:18:00 +00:00
if fs > MAXSIZE:
raise Exception(
"bootloader has to be smaller than %d bytes (current size is %d)"
% (MAXSIZE, fs)
)
with open(fn, "ab") as f:
f.write(b"\x00" * (TOTALSIZE - fs))
f.close()