ROMFS: Be less verbose on boot

This commit is contained in:
Lorenz Meier
2015-04-25 09:01:22 +02:00
parent 6755c0de01
commit 1a527ba9b4
2 changed files with 7 additions and 13 deletions

View File

@@ -24,7 +24,6 @@ set LOG_FILE /fs/microsd/bootlog.txt
# Try to mount the microSD card.
#
# REBOOTWORK this needs to start after the flight control loop
echo "[i] Looking for microSD..."
if mount -t vfat /dev/mmcsd0 /fs/microsd
then
echo "[i] microSD mounted: /fs/microsd"
@@ -53,11 +52,9 @@ fi
#
if [ -f $FRC ]
then
echo "[i] Executing init script: $FRC"
echo "[i] Executing script: $FRC"
sh $FRC
set MODE custom
else
echo "[i] Init script not found: $FRC"
fi
unset FRC
@@ -175,10 +172,8 @@ then
#
if [ -f $FCONFIG ]
then
echo "[i] Config: $FCONFIG"
echo "[i] Custom config: $FCONFIG"
sh $FCONFIG
else
echo "[i] Config not found: $FCONFIG"
fi
unset FCONFIG
@@ -331,10 +326,8 @@ then
then
if px4io start
then
echo "[i] PX4IO started"
sh /etc/init.d/rc.io
else
echo "[i] ERROR: PX4IO start failed"
tone_alarm $TUNE_ERR
fi
fi
@@ -682,8 +675,6 @@ then
then
echo "[i] Addons script: $FEXTRAS"
sh $FEXTRAS
else
echo "[i] No addons script: $FEXTRAS"
fi
unset FEXTRAS