diff options
author | Rob Austein <sra@hactrn.net> | 2016-06-14 23:31:47 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-06-14 23:31:47 -0400 |
commit | e961e9818193acbb18c503830a554e52285e096b (patch) | |
tree | bc9bb46cf8a2a819f90bd17a1638f6c2927fbf80 /bin/reset | |
parent | 764c6f6bd0d055c871e69f0af47d1fa0c7ae0924 (diff) |
Whack shell scripts to work on Debian Jessie too.
Diffstat (limited to 'bin/reset')
-rwxr-xr-x | bin/reset | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -21,7 +21,11 @@ OPENOCD_BOARD_DIR=/usr/share/openocd/scripts/board # OPENOCD_PROC_FILE=stm32f4discovery.cfg if [ "x`lsusb -d 0483:374b`" != "x" ]; then - OPENOCD_PROC_FILE=st_nucleo_f4.cfg + for fn in st_nucleo_f4.cfg st_nucleo_f401re.cfg; do + if [ -f "$OPENOCD_BOARD_DIR/$fn" ]; then + OPENOCD_PROC_FILE="$fn" + fi + done fi $OPENOCD -f $OPENOCD_BOARD_DIR/$OPENOCD_PROC_FILE -c "init" -c "reset run" -c "exit" |