# HG changeset patch # User Giulio Moro # Date 1465953673 -3600 # Node ID c29f07b7350ebc1f638c7a68ceb472d9867de992 # Parent 00c3bbea4faf0e015528529d1a6a07b437ca1fef Quieter setup_board.sh, also invokes IDE setup if available diff -r 00c3bbea4faf -r c29f07b7350e scripts/setup_board.sh --- a/scripts/setup_board.sh Wed Jun 15 02:04:23 2016 +0100 +++ b/scripts/setup_board.sh Wed Jun 15 02:21:13 2016 +0100 @@ -6,7 +6,6 @@ [ -z "$BBB_ADDRESS" ] && BBB_ADDRESS="root@192.168.7.2" [ -z "$BBB_BELA_HOME" ] && BBB_BELA_HOME="~/Bela/" - function usage { THIS_SCRIPT=`basename "$0"` @@ -37,6 +36,7 @@ # Find location of this script so we can locate the rest of the files SCRIPTPATH=$(readlink "$0") SCRIPTDIR=$(dirname "$SCRIPTPATH") +[ -z "$IDE_FOLDER" ] && IDE_FOLDER=$SCRIPTDIR/../bela-ide/ read -p "Warning: this script will DELETE any existing Bela files from your BeagleBone! Continue? (y/N) " -r echo @@ -48,18 +48,29 @@ # Copy relevant files to BeagleBone Black echo "Copying new files to BeagleBone..." - scp -r $SCRIPTDIR/../core $SCRIPTDIR/../include $SCRIPTDIR/../Makefile $SCRIPTDIR/../libNE10.a $SCRIPTDIR/../libprussdrv.a $SCRIPTDIR/../examples $BBB_ADDRESS:$BBB_BELA_HOME &&\ - scp $SCRIPTDIR/../libpd.so $BBB_ADDRESS:/usr/lib + scp -q -r $SCRIPTDIR/../core $SCRIPTDIR/../include $SCRIPTDIR/../Makefile $SCRIPTDIR/../libNE10.a $SCRIPTDIR/../libprussdrv.a $SCRIPTDIR/../examples $BBB_ADDRESS:$BBB_BELA_HOME &&\ + scp -q $SCRIPTDIR/../libpd.so $BBB_ADDRESS:/usr/lib if [ $? -ne 0 ] then echo "Error while copying files" exit fi -# Make remaining directories needed for building +# Create remaining directories needed for building echo "Creating directory structure on BeagleBone..." ssh $BBB_ADDRESS "mkdir -p $BBB_BELA_HOME/build ; mkdir -p $BBB_BELA_HOME/build/core ; mkdir -p $BBB_BELA_HOME/build/projects; mkdir -p $BBB_BELA_HOME/projects" &&\ echo "Done." else echo "Aborting..." + exit fi +#------------- +#Installing IDE +stat $IDE_FOLDER/scripts/setup_IDE.sh > /dev/null +if [ $? -eq 0 ] +then + cd $IDE_FOLDER/scripts; + ./setup_IDE.sh +else + echo "No IDE found, no IDE installed. You can get a copy of the IDE files from https://github.com/LBDonovan/bela-ide" +fi;