Go to file
Jan Pochyla 3a4cbacbff trezorhal: fix missing rx_buffer 2017-04-06 19:06:05 +02:00
assets boot: use cosi to compute aggregated key and use it 2017-04-02 02:55:51 +02:00
docs Implemented vendor header. 2017-04-01 17:01:59 +02:00
micropython trezorhal: fix missing rx_buffer 2017-04-06 19:06:05 +02:00
mocks
src trezor.ui: change failure pin msg 2017-04-06 14:16:48 +02:00
tests modtrezorcrypto: add cosi cosigning scheme to ed25519 class 2017-04-03 22:28:54 +02:00
tools tools: add pretty format to sigmask field 2017-04-06 19:02:09 +02:00
vendor loader: show firmware version in loader, remove image_options.h 2017-04-05 17:41:10 +02:00
.gitignore build: refactor build_vendorheader 2017-04-01 18:28:10 +02:00
.gitmodules modtrezorconfig: readd norcow as a submodule 2017-04-05 02:23:48 +02:00
.travis.yml build: modify travis to not use sudo 2017-04-01 23:59:47 +02:00
LICENSE.md
Makefile tools: add pretty format to sigmask field 2017-04-06 19:02:09 +02:00
Makefile.bootloader bootloader/loader: rename crypto.c/h to image.c/h, refactor 2017-04-01 13:41:07 +02:00
Makefile.firmware trezorhal/usb: now compiles 2017-04-06 19:06:05 +02:00
Makefile.loader tools: add fake signing to binctl, add make sign target 2017-04-05 19:33:50 +02:00
README.md Adding gcc-multilib for debian/ubuntu 2017-03-28 15:02:02 +02:00
emu.sh

README.md

TREZOR Core

TREZOR Core

Build Status gitter

This is the core of the upcoming TREZOR v2.

Documentation

Build instructions for emulator

Linux

Debian/Ubuntu

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libsdl2-dev:i386 libsdl2-image-dev:i386 gcc-multilib
make build_unix

Fedora

sudo yum install SDL2-devel.i686 SDL2_image-devel.i686
make build_unix

openSUSE

sudo zypper install libSDL2-devel-32bit libSDL2_image-devel-32bit
make build_unix

OS X

brew install --universal sdl2 sdl2_image
make build_unix

Windows

Not supported yet ...

Build instructions for ARM

Linux

For flashing firmware to blank device (without bootloader) by make flash, please install stlink.

Debian/Ubuntu

sudo apt-get install gcc-arm-none-eabi libnewlib-arm-none-eabi
make build_trezorhal

OS X

  1. Download gcc-arm-none-eabi
  2. Follow the install instructions
  3. To install stlink, run brew install stlink