mtd: base-files: Unify dual-firmware devices (Linksys)
[openwrt/staging/mkresin.git] / target / linux / mvebu / base-files / etc / init.d / linksys_recovery
diff --git a/target/linux/mvebu/base-files/etc/init.d/linksys_recovery b/target/linux/mvebu/base-files/etc/init.d/linksys_recovery
deleted file mode 100755 (executable)
index b4f375e..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh /etc/rc.common
-# Copyright (C) 2015-2016 OpenWrt.org
-# Copyright (C) 2016 LEDE-Project.org
-
-START=97
-boot() {
-. /lib/functions.sh
-
-case $(board_name) in
-       linksys,caiman|linksys,cobra|linksys,mamba|linksys,rango|linksys,shelby|linksys,venom)
-               # 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
-}