mvebu: make flashing more safe

Turn on the auto recovery feature when flashing
and turn it off on successful bootup.

Signed-off-by: Imre Kaloz <kaloz@openwrt.org>

SVN-Revision: 45792
This commit is contained in:
Imre Kaloz 2015-05-27 19:03:22 +00:00
parent 63cac50d24
commit 9fb062cf93
2 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,14 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2015 OpenWrt.org
START=97
boot() {
. /lib/functions.sh
. /lib/mvebu.sh
case $(mvebu_board_name) in
armada-385-linksys-caiman|armada-385-linksys-cobra|armada-xp-linksys-mamba)
fw_setenv auto_recovery off
;;
esac
}

View file

@ -1,5 +1,5 @@
#
# Copyright (C) 2014 OpenWrt.org
# Copyright (C) 2014-2015 OpenWrt.org
#
linksys_get_target_firmware() {
@ -19,6 +19,9 @@ linksys_get_target_firmware() {
fw_setenv bootcmd "run nandboot"
fi
# re-enable recovery so we get back if the new firmware is broken
fw_setenv auto_recovery yes
echo "$target_firmware"
}