trezor-mcu/firmware-docker-build.sh

20 lines
483 B
Bash
Raw Normal View History

#!/bin/bash
2014-07-07 07:59:37 -07:00
IMAGETAG=trezor-mcu-build
FIRMWARETAG=${1:-master}
2014-12-25 05:43:32 -08:00
2014-07-07 07:59:37 -07: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 07:33:44 -08:00
cd trezor-mcu && \
git checkout $FIRMWARETAG && \
git submodule update --init && \
make && \
cd firmware && \
make && \
2015-04-28 12:20:51 -07:00
cp trezor.bin /output/trezor-$FIRMWARETAG.bin"
echo "---------------------"
echo "Firmware fingerprint:"
sha256sum output/trezor-$FIRMWARETAG.bin