comparison scripts/stop_running.sh @ 425:99de323c13b3 prerelease

Scripts use sh instead of bash. Some fixes in run_project and build_project
author Giulio Moro <giuliomoro@yahoo.it>
date Thu, 16 Jun 2016 15:55:03 +0100
parents a430a16d2c02
children d9a4fc5357e7
comparison
equal deleted inserted replaced
424:9614e2f4b76e 425:99de323c13b3
1 #!/bin/bash 1 #!/bin/sh
2 # 2 #
3 # This script stops the Bela program running on the BeagleBone. 3 # This script stops the Bela program running on the BeagleBone.
4 4
5 [ -z "$BBB_ADDRESS" ] && BBB_ADDRESS="root@192.168.7.2" 5 [ -z "$BBB_ADDRESS" ] && BBB_ADDRESS="root@192.168.7.2"
6 [ -z "$BBB_BELA_HOME" ] && BBB_BELA_HOME="~/Bela/" 6 [ -z "$BBB_BELA_HOME" ] && BBB_BELA_HOME="~/Bela/"
14 [ -z "$BBB_PROJECT_NAME" ] && BBB_PROJECT_NAME=$BBB_DEFAULT_PROJECT_NAME 14 [ -z "$BBB_PROJECT_NAME" ] && BBB_PROJECT_NAME=$BBB_DEFAULT_PROJECT_NAME
15 # The first command should be sufficient to stop any Bela run with 15 # The first command should be sufficient to stop any Bela run with
16 # these scripts; the second will catch any leftovers run other ways 16 # these scripts; the second will catch any leftovers run other ways
17 17
18 BELA_AUDIO_THREAD_NAME=beaglert-audio 18 BELA_AUDIO_THREAD_NAME=beaglert-audio
19 ssh $BBB_ADDRESS make -C $BBB_BELA_HOME stop 19 ssh $BBB_ADDRESS make --no-print-directory -C $BBB_BELA_HOME stop