From: Keith Packard Date: Sat, 12 Aug 2017 03:40:41 +0000 (-0400) Subject: ao-bringup: Allow dfu_util to "fail" while flashing chaoskey X-Git-Tag: 1.8~7 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=f1bbf1bd18d52a084af714a022b12bfc3c76374c ao-bringup: Allow dfu_util to "fail" while flashing chaoskey Sometimes it isn't happy about the exit status, but if the device comes up and works OK, we don't care. Signed-off-by: Keith Packard --- diff --git a/ao-bringup/turnon_chaoskey b/ao-bringup/turnon_chaoskey index 1a8fe13f..4a255bff 100755 --- a/ao-bringup/turnon_chaoskey +++ b/ao-bringup/turnon_chaoskey @@ -27,7 +27,7 @@ echo FLASH_FILE=~/altusmetrumllc/Binaries/loaders/chaoskey-v1.0-altos-flash-*.bin ALTOS_FILE=~/altusmetrumllc/Binaries/chaoskey-v1.0-*.elf -$DFU_UTIL -a 0 -s 0x08000000:leave -D $FLASH_FILE || exit 1 +$DFU_UTIL -a 0 -s 0x08000000:leave -D $FLASH_FILE || true sleep 2