annotate scripts/halt_board.sh @ 500:b935f890e512 prerelease

Updated Doxy to 1.8.11 Amended example titles in render.cpp and file locations in Doxy file.
author Robert Jack <robert.h.jack@gmail.com>
date Wed, 22 Jun 2016 00:27:13 +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"