mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 01:12:11 +00:00
24 lines
387 B
Bash
24 lines
387 B
Bash
#!/bin/sh
|
|
#
|
|
# board specific 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..."
|
|
bl_update $BL_FILE
|
|
echo "BL update done"
|
|
reboot
|
|
fi
|
|
fi
|
|
unset BL_FILE
|