Go to file
Jan Pochyla 23b5e839fb pylint: remove libs/ 2017-08-15 18:14:14 +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
embed modtrezorio: move write() to HID 2017-08-15 18:14:14 +02:00
mocks remove src/lib 2017-08-15 18:14:14 +02:00
site_scons/site_tools/micropython scons: fix frozen module names 2017-08-05 10:17:16 +02:00
src apps.common.coins: regenerate 2017-08-15 18:14:14 +02:00
tests tests: fix permissions 2017-08-15 18:14:14 +02:00
tools tools/binctl: python2 compatibility 2017-08-07 11:59:45 +02:00
vendor bootloader: more work on firmware update 2017-06-20 12:44:48 +02:00
.flake8 make: move flake8 options to config file 2017-06-14 12:58:20 +02:00
.gitignore scons: firmware build 2017-08-04 00:46:57 +02:00
.gitmodules bootloader: migrate to nanopb 2017-06-14 20:44:52 +02:00
.pylintrc pylint: remove libs/ 2017-08-15 18:14:14 +02:00
.travis.yml scons: add TREZOR_NOUI support 2017-08-07 12:31:42 +02:00
LICENSE.md convert license to markdown 2017-03-20 22:59:17 +01:00
Makefile scons: add 32bit unix build 2017-08-08 14:23:34 +02:00
Makefile.boardloader make: adapt to micropython -> embed rename 2017-07-28 16:33:40 +02:00
Makefile.bootloader make: adapt to micropython -> embed rename 2017-07-28 16:33:40 +02:00
Makefile.firmware modtrezormsg: merge to modtrezorio 2017-08-15 18:14:14 +02:00
README.md readme: mention scons 2017-08-07 17:48:21 +02:00
SConscript.boardloader scons: boardloader, bootloader, bugfixes 2017-08-04 00:46:57 +02:00
SConscript.bootloader scons: use in Makefile 2017-08-07 12:04:11 +02:00
SConscript.firmware modtrezormsg: merge to modtrezorio 2017-08-15 18:14:14 +02:00
SConscript.unix modtrezormsg: merge to modtrezorio 2017-08-15 18:14:14 +02:00
SConstruct scons: boardloader, bootloader, bugfixes 2017-08-04 00:46:57 +02:00
emu.sh fix remaining micropython paths 2017-08-07 16:56:41 +02:00

README.md

TREZOR Core

TREZOR Core

Build Status Gitter

This is the core of the upcoming TREZOR v2.

Documentation

Build instructions for emulator

Run the following to checkout the project:

git clone --recursive https://github.com/trezor/trezor-core.git
cd trezor-core

Linux

Debian/Ubuntu

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

Fedora

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

openSUSE

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

OS X

brew install scons 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