Package manamgement: Add deploy script

Signed-off-by: Thomas Klaehn <tkl@blackfinn.de>
This commit is contained in:
Thomas Klaehn 2017-09-16 08:03:23 +02:00
parent d38b75d377
commit edea7701dd
2 changed files with 12 additions and 2 deletions

View File

@ -24,8 +24,9 @@
# Offline mode (for use in constructing flash images offline) # Offline mode (for use in constructing flash images offline)
#option offline_root target #option offline_root target
src/gz snapshots https://opkg.blackfinn.de/bbb src/gz all https://opkg.blackfinn.de/pyro/all
src/gz beaglebone https://opkg.blackfinn.de/pyro/beaglebone
src/gz cortexa8hf-neon https://opkg.blackfinn.de/pyro/cortexa8hf-neon
# Default destination for installed packages # Default destination for installed packages
dest root / dest root /

9
tools/scripts/sync.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
if [ -n "$1" ]; then
rsync -avz -e "ssh -o StrictHostKeyChecking=no" --progress tmp/deploy/ipk/ tkl@proxy:/mnt/data/ipk/$1
else
echo "Which branch?"
exit -1
fi