forked from M-Labs/artiq-zynq
53 lines
1.4 KiB
Bash
Executable File
53 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
target_host="rpi-4.m-labs.hk"
|
|
impure=0
|
|
pure_dir="result"
|
|
impure_dir="build"
|
|
sshopts=""
|
|
load_bitstream=1
|
|
|
|
while getopts "h:id:o:l" opt; do
|
|
case "$opt" in
|
|
\?) exit 1
|
|
;;
|
|
h) target_host=$OPTARG
|
|
;;
|
|
i) impure=1
|
|
;;
|
|
d) pure_dir=$OPTARG;
|
|
impure_dir=$OPTARG;
|
|
;;
|
|
o) sshopts=$OPTARG
|
|
;;
|
|
l) load_bitstream=0
|
|
;;
|
|
esac
|
|
done
|
|
|
|
target_folder="/tmp/zynq-$USER"
|
|
load_bitstream_cmd=""
|
|
if [ $load_bitstream -eq 1 ]; then
|
|
load_bitstream_cmd="pld load 0 top.bit;"
|
|
fi
|
|
|
|
echo "Creating $target_folder..."
|
|
ssh $sshopts $target_host "mkdir -p $target_folder"
|
|
echo "Copying files..."
|
|
rsync -e "ssh $sshopts" openocd/* $target_host:$target_folder
|
|
if [ $impure -eq 1 ]; then
|
|
rsync -e "ssh $sshopts" $impure_dir/firmware/armv7-none-eabihf/release/szl $target_host:$target_folder/szl.elf
|
|
if [ $load_bitstream -eq 1 ]; then
|
|
rsync -e "ssh $sshopts" $impure_dir/gateware/top.bit $target_host:$target_folder
|
|
fi
|
|
else
|
|
rsync -e "ssh $sshopts" -Lc $pure_dir/szl.elf $target_host:$target_folder
|
|
if [ $load_bitstream -eq 1 ]; then
|
|
rsync -e "ssh $sshopts" -Lc $pure_dir/top.bit $target_host:$target_folder
|
|
fi
|
|
fi
|
|
echo "Programming board..."
|
|
ssh $sshopts $target_host "cd $target_folder; openocd -f zc706.cfg -c'$load_bitstream_cmd load_image szl.elf; resume 0; exit'"
|