1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00

legacy: use local copy of the previously built bootloader

This commit is contained in:
Pavol Rusnak 2019-04-23 21:23:52 +02:00
parent 4ec3f36386
commit e06768a7a7
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
3 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ CFLAGS += -DUSE_MONERO=0
@printf " MAKO $@\n"
$(Q)$(PYTHON) ../vendor/trezor-common/tools/cointool.py render $@.mako
bl_data.h: bl_data.py ../bootloader/bootloader.bin
bl_data.h: bl_data.py bootloader.dat
@printf " PYTHON bl_data.py\n"
$(Q)$(PYTHON) bl_data.py

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python
from hashlib import sha256
fn = "../bootloader/bootloader.bin"
fn = "bootloader.dat"
data = open(fn, "rb").read()
if len(data) > 32768:

Binary file not shown.