From fc285fcd137c0f4ffdcd7248dd1544f4d1a76aae Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 1 Sep 2020 17:27:29 +0800 Subject: [PATCH] remote_run: fix pure mode --- remote_run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/remote_run.sh b/remote_run.sh index b781fa53..c9983b5d 100755 --- a/remote_run.sh +++ b/remote_run.sh @@ -45,9 +45,9 @@ if [ $impure -eq 1 ]; then rsync -e "ssh $sshopts" $impure_dir/firmware/armv7-none-eabihf/debug/szl $target_host:$target_folder/szl.elf else if [ $load_bitstream -eq 1 ]; then - load_bitstream_cmd="-g result/top.bit" + load_bitstream_cmd="-g $pure_dir/top.bit" fi - firmware="result/runtime.bin" + firmware="$pure_dir/runtime.bin" rsync -e "ssh $sshopts" -Lc $pure_dir/szl.elf $target_host:$target_folder fi echo "Programming board..."