From: sunghan Date: Mon, 8 May 2017 12:11:41 +0000 (+0900) Subject: fix a failure on download script for artik053 X-Git-Tag: 1.1_Public_Release~597^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=483ada28ea6c205e612294418c2bfcdee3a139ef;p=rtos%2Ftinyara.git fix a failure on download script for artik053 Variables are not delivered to cfg file. It makes error on download. --- diff --git a/build/configs/artik053/artik053_download.sh b/build/configs/artik053/artik053_download.sh index 055ea1a..69d89fc 100755 --- a/build/configs/artik053/artik053_download.sh +++ b/build/configs/artik053/artik053_download.sh @@ -67,11 +67,11 @@ main() # Download all binaries using openocd script pushd ${OPENOCD_DIR_PATH} ${OPENOCD_BIN_PATH}/openocd -f artik053.cfg -c ' \ - flash_write bl1 ${FW_DIR_PATH}/bl1.bin; \ - flash_write bl2 ${FW_DIR_PATH}/bl2.bin; \ - flash_write sssfw ${FW_DIR_PATH}/sssfw.bin; \ - flash_write wlanfw ${FW_DIR_PATH}/wlanfw.bin; \ - flash_write os ${OUTPUT_BINARY_PATH}/tinyara_head.bin; \ + flash_write bl1 ../../bin/bl1.bin; \ + flash_write bl2 ../../bin/bl2.bin; \ + flash_write sssfw ../../bin/sssfw.bin; \ + flash_write wlanfw ../../bin/wlanfw.bin; \ + flash_write os ../../../../output/bin/tinyara_head.bin; \ exit' popd ;;