mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
12 lines
215 B
Bash
12 lines
215 B
Bash
#!/bin/sh
|
|
#
|
|
# External airframe startup script (on SD card)
|
|
#
|
|
|
|
if [ -e ${SDCARD_EXT_PATH}/rc.autostart ]
|
|
then
|
|
. ${SDCARD_EXT_PATH}/rc.autostart
|
|
else
|
|
echo "Error: ${SDCARD_EXT_PATH}/rc.autostart does not exist"
|
|
fi
|