Mercurial > hg > beaglert
changeset 422:d56e638c37c6 prerelease
Reduced verbosity of set_startup.sh
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Thu, 16 Jun 2016 14:03:52 +0100 |
parents | 57903b3259e1 |
children | 9182fa7e802a |
files | scripts/set_startup.sh |
diffstat | 1 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/set_startup.sh Thu Jun 16 14:02:15 2016 +0100 +++ b/scripts/set_startup.sh Thu Jun 16 14:03:52 2016 +0100 @@ -53,16 +53,13 @@ shift $((OPTIND-1)) -MAKE_COMMAND="make -C $BBB_BELA_HOME PROJECT=$BBB_PROJECT_NAME CL=\"$OPTARG\"" +MAKE_COMMAND="make --no-print-directory -C $BBB_BELA_HOME PROJECT=$BBB_PROJECT_NAME CL=\"$OPTARG\"" if [ $ENABLE_STARTUP -eq 0 ] then - echo "Disabling Bela at startup..." ssh $BBB_ADDRESS "$MAKE_COMMAND nostartup" elif [ $RUN_IN_LOOP -eq 1 ] then - echo "Enabling Bela at startup..." ssh $BBB_ADDRESS "$MAKE_COMMAND startuploop" else - echo "Enabling Bela at startup..." ssh $BBB_ADDRESS "$MAKE_COMMAND startup" fi