You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
480 B
29 lines
480 B
6 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# PX4 FMUv2 specific board defaults
|
||
|
#------------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
#
|
||
|
# Bootloader upgrade
|
||
|
#
|
||
|
set BL_FILE /etc/extras/px4fmuv3_bl.bin
|
||
|
if [ -f $BL_FILE ]
|
||
|
then
|
||
|
if param compare SYS_BL_UPDATE 1
|
||
|
then
|
||
|
param set SYS_BL_UPDATE 0
|
||
|
param save
|
||
|
echo "BL update..." >> $LOG_FILE
|
||
|
bl_update $BL_FILE
|
||
|
echo "BL update done" >> $LOG_FILE
|
||
|
reboot
|
||
|
fi
|
||
|
fi
|
||
|
unset BL_FILE
|
||
|
|
||
|
if [ $AUTOCNF = yes ]
|
||
|
then
|
||
|
param set SYS_FMU_TASK 0
|
||
|
fi
|