1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 05:28:40 +00:00
trezor-firmware/firmware-docker-build.sh

23 lines
524 B
Bash
Raw Normal View History

#!/bin/bash
2014-07-07 14:59:37 +00:00
IMAGETAG=trezor-mcu-build
FIRMWARETAG=${1:-master}
2014-12-25 13:43:32 +00:00
2014-07-07 14:59:37 +00:00
docker build -t $IMAGETAG .
docker run -t -v $(pwd)/output:/output $IMAGETAG /bin/sh -c "\
git clone https://github.com/trezor/trezor-mcu && \
2014-12-27 15:33:44 +00:00
cd trezor-mcu && \
git checkout $FIRMWARETAG && \
git submodule update --init && \
2015-12-14 23:20:34 +00:00
cd libopencm3 &&
make && \
cd .. && \
2014-12-27 15:33:44 +00:00
make && \
cd firmware && \
make && \
2015-04-28 19:20:51 +00:00
cp trezor.bin /output/trezor-$FIRMWARETAG.bin"
echo "---------------------"
echo "Firmware fingerprint:"
sha256sum output/trezor-$FIRMWARETAG.bin