2014-06-19 00:08:31 +00:00
|
|
|
#!/bin/bash
|
2014-07-07 14:59:37 +00:00
|
|
|
IMAGETAG=trezor-mcu-build
|
2015-07-04 11:49:30 +00:00
|
|
|
FIRMWARETAG=${1:-master}
|
2014-12-25 13:43:32 +00:00
|
|
|
|
2014-07-07 14:59:37 +00:00
|
|
|
docker build -t $IMAGETAG .
|
2015-03-05 21:09:30 +00:00
|
|
|
docker run -t -v $(pwd)/output:/output $IMAGETAG /bin/sh -c "\
|
2015-07-04 11:49:30 +00:00
|
|
|
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"
|
2014-06-19 00:08:31 +00:00
|
|
|
|
2014-06-19 00:28:22 +00:00
|
|
|
echo "---------------------"
|
|
|
|
echo "Firmware fingerprint:"
|
2014-06-19 00:08:31 +00:00
|
|
|
|
2015-03-05 21:09:30 +00:00
|
|
|
sha256sum output/trezor-$FIRMWARETAG.bin
|