Go to file
Pavol Rusnak 00f566c434
bootloader: start working on USB processing
2017-04-12 18:31:23 +02:00
assets assets: update bootloader ui mockups 2017-04-09 02:42:49 +02:00
docs docs: update markdown according to lint 2017-04-12 14:45:58 +02:00
micropython bootloader: start working on USB processing 2017-04-12 18:31:23 +02:00
mocks mocks: update build script, refresh 2017-04-08 18:43:26 +02:00
src src.apps.common: update coins.py 2017-04-12 14:48:51 +02:00
tests modtrezorcrypto: add cosi cosigning scheme to ed25519 class 2017-04-03 22:28:54 +02:00
tools rename loader to bootloader 2017-04-10 19:24:21 +02:00
vendor loader: show firmware version in loader, remove image_options.h 2017-04-05 17:41:10 +02:00
.gitignore bootloader: start working on USB processing 2017-04-12 18:31:23 +02:00
.gitmodules modtrezorconfig: readd norcow as a submodule 2017-04-05 02:23:48 +02:00
.travis.yml rename loader to bootloader 2017-04-10 19:24:21 +02:00
LICENSE.md convert license to markdown 2017-03-20 22:59:17 +01:00
Makefile rename loader to bootloader 2017-04-10 19:24:21 +02:00
Makefile.boardloader rename bootloader to boardloader 2017-04-10 19:11:44 +02:00
Makefile.bootloader bootloader: start working on USB processing 2017-04-12 18:31:23 +02:00
Makefile.firmware trezorhal: upgrade usbd files from stmcube 1.15 2017-04-10 17:52:18 +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