Mercurial > hg > beaglert
annotate scripts/halt_board.sh @ 556:ce391098f321 prerelease tip
THIS PROJECT HAS MOVED TO https://github.com/BelaPlatform/bela
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Sat, 25 Jun 2016 20:21:00 +0100 |
parents | d9a4fc5357e7 |
children |
rev | line source |
---|---|
giuliomoro@425 | 1 #!/bin/sh |
andrewm@60 | 2 # |
andrewm@60 | 3 # This script halts the BeagleBone Black. |
andrewm@60 | 4 |
giuliomoro@462 | 5 SCRIPTDIR=$(dirname "$0") |
giuliomoro@462 | 6 [ -z $SCRIPTDIR ] && SCRIPTDIR="./" || SCRIPTDIR=$SCRIPTDIR/ |
giuliomoro@462 | 7 . $SCRIPTDIR.bela_common || { echo "You must be in Bela/scripts to run these scripts" | exit 1; } |
andrewm@60 | 8 |
andrewm@60 | 9 echo "Shutting down the BeagleBone Black..." |
giuliomoro@365 | 10 ssh $BBB_ADDRESS "halt" |