aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ipq806x/base-files/etc/init.d
diff options
context:
space:
mode:
authorAdrian Panella <ianchi74@outlook.com>2016-06-23 18:54:05 +0200
committerZoltan HERPAI <wigyori@uid0.hu>2016-06-23 18:54:05 +0200
commit476853a27dc2c6752d2853bcd94cae44c57ee569 (patch)
tree5d63519ba5bec4a658501fb44a6892a5808bebe9 /target/linux/ipq806x/base-files/etc/init.d
parent56319a0e3cac2e916a3a248de77e19524a21e802 (diff)
downloadmaster-187ad058-476853a27dc2c6752d2853bcd94cae44c57ee569.tar.gz
master-187ad058-476853a27dc2c6752d2853bcd94cae44c57ee569.tar.bz2
master-187ad058-476853a27dc2c6752d2853bcd94cae44c57ee569.zip
ipq806x: base-files: add support for Linksys EA8500
Signed-off-by: Adrian Panella <ianchi74@outlook.com>
Diffstat (limited to 'target/linux/ipq806x/base-files/etc/init.d')
-rwxr-xr-xtarget/linux/ipq806x/base-files/etc/init.d/linksys_recovery20
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/ipq806x/base-files/etc/init.d/linksys_recovery b/target/linux/ipq806x/base-files/etc/init.d/linksys_recovery
new file mode 100755
index 0000000000..b9ea004207
--- /dev/null
+++ b/target/linux/ipq806x/base-files/etc/init.d/linksys_recovery
@@ -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
+}