OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 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,ea8500) |
||
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 | } |