HAL_PX4: added support for /fs/microsd/APM/nostart

prevents APM startup
This commit is contained in:
Andrew Tridgell 2013-01-25 20:36:33 +11:00
parent 8f2f4b1bc5
commit 7359348e2c
1 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,11 @@
# APM startup script for NuttX on PX4
if [ -f /fs/microsd/APM/nostart ]
then
echo "APM/nostart found - skipping"
else
uorb start
# mount binfs so we can find the built-in apps
@ -63,3 +68,4 @@ then
else
echo "No APM sketch found"
fi
fi