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.
17 lines
307 B
17 lines
307 B
#! /bin/sh
|
|
|
|
#
|
|
# Bootloader upgrade
|
|
#
|
|
if param compare -s SYS_BL_UPDATE 1
|
|
then
|
|
if [ -f "/etc/extras/@BOARD_FIRMWARE_BIN@" ]
|
|
then
|
|
param set SYS_BL_UPDATE 0
|
|
param save
|
|
echo "bootloader update..."
|
|
bl_update "/etc/extras/@BOARD_FIRMWARE_BIN@"
|
|
echo "bootloader update done, rebooting"
|
|
reboot
|
|
fi
|
|
fi
|
|
|