diff options
author | Keith Packard <keithp@keithp.com> | 2018-03-16 14:50:29 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-03-16 14:50:29 -0700 |
commit | 7068149704e6de67ece670227445e987421cd600 (patch) | |
tree | 3882dbf416203ef091ecc8b4a35a46bac578a273 /ao-bringup | |
parent | 46d8197bb80ce3fe4cdc7b36c3be211366093bd5 (diff) |
chaoskey: Create unified ROM image with both loader and app
Flash the whole thing all at once to reduce the number of steps during
turnon.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-bringup')
-rwxr-xr-x | ao-bringup/turnon_chaoskey | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ao-bringup/turnon_chaoskey b/ao-bringup/turnon_chaoskey index 4a255bff..d710e5ff 100755 --- a/ao-bringup/turnon_chaoskey +++ b/ao-bringup/turnon_chaoskey @@ -24,14 +24,14 @@ echo "Expectations:" echo "\tChaosKey v$VERSION powered from USB" echo -FLASH_FILE=~/altusmetrumllc/Binaries/loaders/chaoskey-v1.0-altos-flash-*.bin -ALTOS_FILE=~/altusmetrumllc/Binaries/chaoskey-v1.0-*.elf +FLASH_FILE=~/altusmetrumllc/Binaries/chaoskey-v1.0-all-*.bin +#ALTOS_FILE=~/altusmetrumllc/Binaries/chaoskey-v1.0-*.elf $DFU_UTIL -a 0 -s 0x08000000:leave -D $FLASH_FILE || true -sleep 2 +#sleep 2 -$USBLOAD --serial=1 $ALTOS_FILE || exit 1 +#$USBLOAD --serial=1 $ALTOS_FILE || exit 1 sleep 1 |