Browse Source

Merge pull request #743 from PX4/rcS_hotfix

add missing $ in rcS script
sbg
kroimon 11 years ago
parent
commit
39274f4bf3
  1. 4
      ROMFS/px4fmu_common/init.d/rcS

4
ROMFS/px4fmu_common/init.d/rcS

@ -466,7 +466,7 @@ then @@ -466,7 +466,7 @@ then
sh /etc/init.d/rc.interface
# Start standard fixedwing apps
if [ LOAD_DEFAULT_APPS == yes ]
if [ $LOAD_DEFAULT_APPS == yes ]
then
sh /etc/init.d/rc.fw_apps
fi
@ -525,7 +525,7 @@ then @@ -525,7 +525,7 @@ then
sh /etc/init.d/rc.interface
# Start standard multicopter apps
if [ LOAD_DEFAULT_APPS == yes ]
if [ $LOAD_DEFAULT_APPS == yes ]
then
sh /etc/init.d/rc.mc_apps
fi

Loading…
Cancel
Save