add remote run script

eth
Sebastien Bourdeauducq 2020-06-04 19:57:52 +08:00
parent 7695d6d8df
commit a53ed8acc8
1 changed files with 21 additions and 0 deletions

21
remote_run.sh Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/env bash
set -e
target_host="rpi-4.m-labs.hk"
while getopts "h:i" opt; do
case "$opt" in
\?) exit 0
;;
h) target_host=$OPTARG
;;
esac
done
target_folder=/tmp/zynq-\$USER
ssh $target_host "mkdir -p $target_folder"
rsync openocd/* $target_host:$target_folder
rsync target/armv7-none-eabihf/release/experiments $target_host:$target_folder/experiments.elf
ssh $target_host "cd $target_folder; openocd -f zc706.cfg -c 'load_image experiments.elf; resume 0; exit'"