comparison scripts/set_startup.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 2e01a9d6cb58
children 3bb63b848960
comparison
equal deleted inserted replaced
461:26b3b87437fb 462:d9a4fc5357e7
1 #!/bin/sh 1 #!/bin/sh
2 # 2 #
3 # This script enables or disables running Bela when the board starts 3 # This script enables or disables running Bela when the board starts
4 # up. 4 # up.
5 5
6 [ -z "$BBB_ADDRESS" ] && BBB_ADDRESS="root@192.168.7.2" 6 SCRIPTDIR=$(dirname "$0")
7 [ -z "$BBB_BELA_HOME" ] && BBB_BELA_HOME="~/Bela/" 7 [ -z $SCRIPTDIR ] && SCRIPTDIR="./" || SCRIPTDIR=$SCRIPTDIR/
8 [ -z "$BBB_SCREEN_NAME" ] && BBB_SCREEN_NAME="Bela" 8 . $SCRIPTDIR.bela_common || { echo "You must be in Bela/scripts to run these scripts" | exit 1; }
9 [ -z "$RUN_PROJECT" ] && RUN_PROJECT=1 9
10 [ -z "$COMMAND_ARGS" ] && COMMAND_ARGS=
11 [ -z "$RUN_IN_FOREGROUND" ] && RUN_IN_FOREGROUND=1
12 [ -z "$RUN_WITHOUT_SCREEN" ] && RUN_WITHOUT_SCREEN=0
13 [ -z "$BBB_PROJECT_HOME" ] && BBB_PROJECT_HOME="${BBB_BELA_HOME}/projects/"
14 [ -z "$BBB_DEFAULT_PROJECT_NAME" ] && BBB_DEFAULT_PROJECT_NAME="scriptUploadedProject"
15 [ -z "$BBB_PROJECT_NAME" ] && BBB_PROJECT_NAME=$BBB_DEFAULT_PROJECT_NAME
16 ENABLE_STARTUP=1 10 ENABLE_STARTUP=1
17 RUN_IN_LOOP=0 11 RUN_IN_LOOP=0
18 12
19 # This path is hard-coded in the Bela image at present. 13 # This path is hard-coded in the Bela image at present.
20 14