From e961e9818193acbb18c503830a554e52285e096b Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Tue, 14 Jun 2016 23:31:47 -0400 Subject: Whack shell scripts to work on Debian Jessie too. --- bin/debug | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bin/debug') diff --git a/bin/debug b/bin/debug index f87a3b5..14f3fa6 100755 --- a/bin/debug +++ b/bin/debug @@ -6,7 +6,11 @@ OPENOCD=openocd 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 & -- cgit v1.2.3