From 76be0a4c929c5c56387236b389fd1861e8f9a1c2 Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Tue, 13 Jun 2017 14:16:43 -0500 Subject: [PATCH] scripts: bossa-flash.sh: fix variable usage We define a variable to pickup a default for the bossa binary, however we weren't using it. Lets do so now. Signed-off-by: Kumar Gala --- scripts/support/bossa-flash.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/support/bossa-flash.sh b/scripts/support/bossa-flash.sh index 348f59b2b4f..0c1fee709cc 100755 --- a/scripts/support/bossa-flash.sh +++ b/scripts/support/bossa-flash.sh @@ -7,7 +7,7 @@ BOSSAC_CMD="${BOSSAC:-bossac}" if [ `uname` = "Linux" ]; then stty -F /dev/ttyACM0 raw ispeed 1200 ospeed 1200 cs8 \ -cstopb ignpar eol 255 eof 255 - ${BOSSAC} -R -e -w -v -b "${O}/${KERNEL_BIN_NAME}" + ${BOSSAC_CMD} -R -e -w -v -b "${O}/${KERNEL_BIN_NAME}" else echo "CAUTION: No flash tool for your host system found!" fi