diff options
author | 2017-07-05 13:14:30 +0200 | |
---|---|---|
committer | 2017-07-05 16:06:25 +0200 | |
commit | 6e9c98a8384a09547c2544df2f3e15c08bae63d0 (patch) | |
tree | b58929da011e2dc9bf93fbdab47779f76c385064 /board/stmicroelectronics | |
parent | 3dc8e8a97b2b20601640c552a5dd40b08f4b44bd (diff) | |
download | buildroot-6e9c98a8384a09547c2544df2f3e15c08bae63d0.tar.gz buildroot-6e9c98a8384a09547c2544df2f3e15c08bae63d0.tar.bz2 |
stm32f469-disco: replace $HOST_DIR/usr with $HOST_DIR in flash script
Manual change because the script uses ${OUTPUT_DIR}/host instead of
${HOST_DIR}.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'board/stmicroelectronics')
-rwxr-xr-x | board/stmicroelectronics/stm32f469-disco/flash.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/stmicroelectronics/stm32f469-disco/flash.sh b/board/stmicroelectronics/stm32f469-disco/flash.sh index a68bea09a7..0ec0beb2de 100755 --- a/board/stmicroelectronics/stm32f469-disco/flash.sh +++ b/board/stmicroelectronics/stm32f469-disco/flash.sh @@ -8,7 +8,7 @@ if ! test -d "${OUTPUT_DIR}" ; then exit 1 fi -${OUTPUT_DIR}/host/usr/bin/openocd -f board/stm32f469discovery.cfg \ +${OUTPUT_DIR}/host/bin/openocd -f board/stm32f469discovery.cfg \ -c "init" \ -c "reset init" \ -c "flash probe 0" \ |