diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2016-08-15 15:37:41 +0200 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2016-08-15 15:37:41 +0200 |
commit | 7d4c495489ffa299118e3586d94d3a02af13a810 (patch) | |
tree | aaf87aeff1ae7328c1acb710acd9b619866d6626 /run.sh | |
parent | 4758a8c13add7b04eda596595c7d192ffad9c3d5 (diff) |
Diffstat (limited to 'run.sh')
-rwxr-xr-x | run.sh | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -5,20 +5,24 @@ set -e echo "##########################################" echo "# Flashing bootloader" echo "##########################################" -./bin/flash-target bootloader +./bin/flash-target firmware/bootloader echo "##########################################" -echo "# Flashing temporary HSM firmware" +echo "# Flashing temporary cli-test HSM firmware" echo "##########################################" ./bin/flash-target firmware/cli-test ./bin/reset + +echo "##########################################" +echo "# Sleeping after reset" +echo "##########################################" sleep 5 echo "##########################################" echo "# Uploading bitstream" echo "##########################################" -./bin/cryptech_upload --fpga --username wheel +./bin/cryptech_upload --fpga --username ct echo "##########################################" echo "# Programming AVR" @@ -28,7 +32,7 @@ avrdude -c usbtiny -p attiny828 -U flash:w:firmware/tamper.hex echo "##########################################" echo "# Flashing official STM32 firmware" echo "##########################################" -./bin/cryptech_upload --firmware --username wheel +./bin/cryptech_upload --firmware --username ct ./bin/reset sleep 15 |