HAL_QURT: added install script

copies so and frontend elf to vehicle
This commit is contained in:
Andrew Tridgell 2024-10-22 16:45:42 +09:00 committed by Peter Barker
parent ebba4ac287
commit 0fa3086a93
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#!/bin/bash
# script to install ArduPilot on a voxl2 board
# this assumes you have already installed the voxl-ardupilot.service file
# and /usr/bin/voxl-ardupilot script
[ $# -eq 1 ] || {
echo "install.sh IPADDRESS"
exit 1
}
DEST="$1"
set -e
echo "Installing ArduPilot on $DEST"
rsync -a build/QURT/bin/arducopter $DEST:/usr/lib/rfsa/adsp/ArduPilot.so
rsync -a build/QURT/ardupilot $DEST:/usr/bin/
echo "Restarting ArduPilot"
ssh $DEST systemctl restart voxl-ardupilot