forked from Ivasoft/openwrt
ipq806x: base-files: add support for Linksys EA8500
Signed-off-by: Adrian Panella <ianchi74@outlook.com>
This commit is contained in:
committed by
John Crispin
parent
2adc6468bf
commit
3d067c0132
20
target/linux/ipq806x/base-files/etc/init.d/linksys_recovery
Executable file
20
target/linux/ipq806x/base-files/etc/init.d/linksys_recovery
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
|
||||
START=97
|
||||
boot() {
|
||||
. /lib/functions.sh
|
||||
. /lib/ipq806x.sh
|
||||
|
||||
case $(ipq806x_board_name) in
|
||||
ea8500)
|
||||
# make sure auto_recovery in uboot is always on
|
||||
AUTO_RECOVERY_ENA="`fw_printenv -n auto_recovery`"
|
||||
if [ "$AUTO_RECOVERY_ENA" != "yes" ] ; then
|
||||
fw_setenv auto_recovery yes
|
||||
fi
|
||||
# reset the boot counter
|
||||
mtd resetbc s_env
|
||||
;;
|
||||
esac
|
||||
}
|
||||
Reference in New Issue
Block a user