# HG changeset patch # User andrewm # Date 1436979009 -3600 # Node ID 5bdf6efbd0eddb7884008d28c40c323a1f94507a # Parent 3ffafa57302c47c95f5984d53fffcf4ba4fca298 Added a script for enabling/disabling BeagleRT at startup. Only works with the matching SD image that looks for /root/BeagleRT_startup.sh diff -r 3ffafa57302c -r 5bdf6efbd0ed scripts/set_startup.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scripts/set_startup.sh Wed Jul 15 17:50:09 2015 +0100 @@ -0,0 +1,60 @@ +#!/bin/bash +# +# This script enables or disables running BeagleRT when the board starts +# up. + +BBB_ADDRESS="root@192.168.7.2" +BBB_PATH="/root/BeagleRT" +ENABLE_STARTUP=1 + +# This path is hard-coded in the BeagleRT image at present. +BBB_STARTUP_SCRIPT="/root/BeagleRT_startup.sh" + +function usage +{ + THIS_SCRIPT=`basename "$0"` + echo "Usage: $THIS_SCRIPT [-b path-on-beaglebone] [-n]" + + echo " + This script enables (by default) or disables running the BeagleRT + project at startup. The -n option disables auto-startup, otherwise + auto-startup is enabled. The -b option changes the default path, which + is otherwise $BBB_PATH." +} + +OPTIND=1 + +while getopts "b:nh" opt; do + case $opt in + b) BBB_PATH=$OPTARG + ;; + n) ENABLE_STARTUP=0 + ;; + h|\?) usage + exit 1 + esac +done + +shift $((OPTIND-1)) + +if [ $ENABLE_STARTUP -eq 0 ] +then + echo "Disabling BeagleRT at startup..." + + ssh $BBB_ADDRESS "echo \"#!/bin/sh +# +# This file is autogenerated by BeagleRT. Do not edit! + +# Run on startup disabled -- nothing to do here\" > $BBB_STARTUP_SCRIPT" + +else + echo "Enabling BeagleRT at startup..." + + ssh $BBB_ADDRESS "echo \"#!/bin/sh +# +# This file is autogenerated by BeagleRT. Do not edit! + +echo Running BeagleRT... +screen -S BeagleRT -d -m $BBB_PATH/BeagleRT\" > $BBB_STARTUP_SCRIPT" + +fi \ No newline at end of file