8fd2f387abd275d49de6a9c7435547c00c7e6e95
[openwrt/staging/dedeckeh.git] / target / linux / kirkwood / base-files / etc / init.d / linksys_recovery
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2015 OpenWrt.org
3
4 START=97
5 boot() {
6 . /lib/functions.sh
7
8 case $(board_name) in
9 linksys,audi|linksys,viper)
10 # make sure auto_recovery in uboot is always on
11 AUTO_RECOVERY_ENA="`fw_printenv -n auto_recovery`"
12 if [ "$AUTO_RECOVERY_ENA" != "yes" ] ; then
13 fw_setenv auto_recovery yes
14 fi
15 # reset the boot counter
16 mtd resetbc s_env
17 ;;
18 esac
19 }