1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 02:19:21 +00:00
Go to file
2017-06-30 16:52:00 +02:00
bootloader bootloader: do not show fingerprint on very first flash; refactor firmware_present, introduce brand_new_firmware 2017-06-30 16:52:00 +02:00
demo fix usage of RNG before setup (#150/#151) 2017-02-17 13:19:05 +01:00
fastflash fastflash: Link bootloader that runs from RAM 2017-06-25 18:19:07 +02:00
firmware recovery: zero new_mnemonic memory before returning to the user 2017-06-30 14:43:16 +02:00
gen adapt python scripts to Python3 2017-02-01 18:07:47 +01:00
gitian
vendor bootloader: add SelfTest 2017-06-29 17:31:23 +02:00
.gitignore add _attic to gitignore 2017-01-24 15:19:15 +01:00
.gitmodules
.travis.yml Travis CI: Build FASTFLASH=1 2017-06-25 18:19:07 +02:00
bootloader-docker-build.sh fix Docker build of libopencm3 2017-05-09 01:42:23 +02:00
buttons.c
buttons.h
COPYING
Dockerfile
firmware-docker-build.sh fix Docker build of libopencm3 2017-05-09 01:42:23 +02:00
firmware-fingerprint.sh
layout.c
layout.h
Makefile timer: Use Cortex-M3 SysTick timers 2016-11-17 02:07:46 +01:00
Makefile.include add ability for developers to easily avoid locking their flash memory sectors 2017-06-30 15:47:16 +02:00
memory_app_0.0.0.ld
memory_app_1.0.0.ld
memory_app_2.0.0.ld fastflash: Compatible with GCC 4.9.3 2017-06-25 18:19:07 +02:00
memory_app_fastflash.ld fastflash: Compatible with GCC 4.9.3 2017-06-25 18:19:07 +02:00
memory.c add ability for developers to easily avoid locking their flash memory sectors 2017-06-30 15:47:16 +02:00
memory.h
memory.ld
oled.c fix when oled triangle is shown 2017-01-19 16:16:57 +01:00
oled.h fix when oled triangle is shown 2017-01-19 16:16:57 +01:00
README.md update readme 2017-01-10 15:14:29 +01:00
rng.c
rng.h
serialno.c
serialno.h
setup.c fix usage of RNG before setup (#150/#151) 2017-02-17 13:19:05 +01:00
setup.h
timer.c timer: Fix non-critical integer overflow (#129) 2016-11-23 20:22:28 +01:00
timer.h timer: Fix non-critical integer overflow (#129) 2016-11-23 20:22:28 +01:00
util.c
util.h

TREZOR Firmware

Build Status gitter

https://trezor.io/

How to build TREZOR firmware?

  1. Install Docker
  2. git clone https://github.com/trezor/trezor-mcu.git
  3. cd trezor-mcu
  4. ./firmware-docker-build.sh TAG (where TAG is v1.3.2 for example, if left blank the script builds latest commit)

This creates file output/trezor-TAG.bin and prints its fingerprint at the last line of the build log.

How to build TREZOR bootloader?

  1. Install Docker
  2. git clone https://github.com/trezor/trezor-mcu.git
  3. cd trezor-mcu
  4. ./bootloader-docker-build.sh

This creates file output/bootloader.bin and prints its fingerprint and size at the last line of the build log.

How to get fingerprint of firmware signed and distributed by SatoshiLabs?

  1. Pick version of firmware binary listed on https://wallet.trezor.io/data/firmware/releases.json
  2. Download it: wget -O trezor.signed.bin https://wallet.trezor.io/data/firmware/trezor-1.3.6.bin
  3. ./firmware-fingerprint.sh trezor.signed.bin

Step 3 should produce the same sha256 fingerprint like your local build (for the same version tag).

The reasoning for firmware-fingerprint.sh script is that signed firmware has special header holding signatures themselves, which must be avoided while calculating the fingerprint.