Mercurial > hg > beaglert
comparison scripts/halt_board.sh @ 462:d9a4fc5357e7 prerelease
Path-relativeness of scripts has been improved. At least update_board will work when double clicked
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Mon, 20 Jun 2016 14:09:43 +0100 |
parents | 99de323c13b3 |
children |
comparison
equal
deleted
inserted
replaced
461:26b3b87437fb | 462:d9a4fc5357e7 |
---|---|
1 #!/bin/sh | 1 #!/bin/sh |
2 # | 2 # |
3 # This script halts the BeagleBone Black. | 3 # This script halts the BeagleBone Black. |
4 | 4 |
5 [ -z "$BBB_ADDRESS" ] && BBB_ADDRESS="root@192.168.7.2" | 5 SCRIPTDIR=$(dirname "$0") |
6 [ -z $SCRIPTDIR ] && SCRIPTDIR="./" || SCRIPTDIR=$SCRIPTDIR/ | |
7 . $SCRIPTDIR.bela_common || { echo "You must be in Bela/scripts to run these scripts" | exit 1; } | |
6 | 8 |
7 echo "Shutting down the BeagleBone Black..." | 9 echo "Shutting down the BeagleBone Black..." |
8 ssh $BBB_ADDRESS "halt" | 10 ssh $BBB_ADDRESS "halt" |