artiq-zynq/remote_run.sh

39 lines
969 B
Bash
Raw Normal View History

2020-04-11 21:12:16 +08:00
#!/usr/bin/env bash
set -e
target_host="rpi-4.m-labs.hk"
impure=0
pure_dir="result"
impure_dir="build"
2020-04-11 21:12:16 +08:00
2020-07-04 17:30:59 +08:00
while getopts "h:id:" opt; do
case "$opt" in
\?) exit 0
;;
h) target_host=$OPTARG
;;
i) impure=1
;;
d) pure_dir=$OPTARG;
impure_dir=$OPTARG;
;;
esac
done
2020-04-11 21:12:16 +08:00
target_folder=/tmp/zynq-\$USER
2020-07-04 17:44:58 +08:00
echo "Creating $target_folder..."
ssh $target_host "mkdir -p $target_folder"
2020-07-04 17:44:58 +08:00
echo "Copying files..."
rsync openocd/* $target_host:$target_folder
if [ $impure -eq 1 ]; then
rsync $impure_dir/firmware/armv7-none-eabihf/release/szl $target_host:$target_folder/szl.elf
rsync $impure_dir/gateware/top.bit $target_host:$target_folder
else
rsync -L $pure_dir/szl.elf $target_host:$target_folder
rsync -L $pure_dir/top.bit $target_host:$target_folder
fi
2020-07-04 17:44:58 +08:00
echo "Programming board..."
2020-05-01 11:22:45 +08:00
ssh $target_host "cd $target_folder; openocd -f zc706.cfg -c 'pld load 0 top.bit; load_image szl.elf; resume 0; exit'"