mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
11 lines
299 B
Python
Executable File
11 lines
299 B
Python
Executable File
#!/usr/bin/python
|
|
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)
|