Mercurial > hg > beaglert
annotate scripts/stop_running.sh @ 547:a2096488a21a prerelease
Merge
author | chnrx <chris.heinrichs@gmail.com> |
---|---|
date | Fri, 24 Jun 2016 14:12:22 +0100 |
parents | d9a4fc5357e7 |
children |
rev | line source |
---|---|
giuliomoro@425 | 1 #!/bin/sh |
andrewm@58 | 2 # |
giuliomoro@377 | 3 # This script stops the Bela program running on the BeagleBone. |
andrewm@58 | 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; } |
giuliomoro@279 | 8 |
giuliomoro@425 | 9 ssh $BBB_ADDRESS make --no-print-directory -C $BBB_BELA_HOME stop |