1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 02:19:21 +00:00
trezor-firmware/firmware-docker-build.sh

21 lines
436 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 .
2014-12-27 15:33:44 +00:00
docker run -t -v $(pwd):/output $IMAGETAG /bin/sh -c "\
git clone https://github.com/trezor/trezor-mcu && \
cd trezor-mcu && \
git checkout $FIRMWARETAG && \
git submodule update --init && \
make && \
cd firmware && \
make && \
cp trezor.bin /output \
"
echo "---------------------"
echo "Firmware fingerprint:"
sha256sum trezor.bin