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