Go to file
Jan Pochyla 792faea908 loader: cleanup usb before jump 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 loader: cleanup usb before jump 2017-04-06 19:06:05 +02:00
mocks trezor.crypto: curve.nist256p1 and curve.secp256k1 now sign/verify 256-bit digests, not arbitrary length messages 2016-11-08 15:38:45 +01:00
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 convert license to markdown 2017-03-20 22:59:17 +01:00
Makefile tools: add pretty format to sigmask field 2017-04-06 19:02:09 +02:00
Makefile.bootloader loader: add usb 2017-04-06 19:06:05 +02:00
Makefile.firmware trezorhal/usb: now compiles 2017-04-06 19:06:05 +02:00
Makefile.loader loader: add usb 2017-04-06 19:06:05 +02:00
README.md Adding gcc-multilib for debian/ubuntu 2017-03-28 15:02:02 +02:00
emu.sh emu: add -r option to restart (and reload sources) when sources are changed 2016-11-17 13:08:49 +01:00

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