view resources/initd-bela @ 383:e42bc9ba7550 prerelease

Fixed when rebuilding non-main() project after main() project: the 'nasty kludge' was looking in ALL the .o files in projectFolder/build/ instead of only those that have a corresponding .cpp/.c/.S file. An even better fix is make sure that object files associated with source files deleted by rsync are removed as well
author Giulio Moro <giuliomoro@yahoo.it>
date Mon, 13 Jun 2016 00:44:47 +0100
parents 6b717992c8d2
children db1714fe2814
line wrap: on
line source
#! /bin/sh
# /etc/init.d/bela
#

# Some things that run always
# ...nothing to do here

# Carry out specific functions when asked to by the system
case "$1" in
  start)
    echo "Adding Bela PRU Overlay..."
    echo BB-BONE-PRU-BELA > /sys/devices/bone_capemgr.9/slots
    echo "Adding Bela Audio Cape Overlay..."
    echo BB-BONE-BAREAUDI-02 > /sys/devices/bone_capemgr.9/slots
    cd /root
    sh BeagleRT_startup.sh
    sh BeagleRT_node.sh
    ;;
  stop)
    pkill BeagleRT
    ;;
  *)
    echo "Usage: /etc/init.d/bela {start|stop}"
    exit 1
    ;;
esac

exit 0