mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Turn on the auto recovery feature when flashing and turn it off on successful bootup. Signed-off-by: Imre Kaloz <kaloz@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45792 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
261 B
Bash
Executable File
15 lines
261 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
|
|
START=97
|
|
boot() {
|
|
. /lib/functions.sh
|
|
. /lib/mvebu.sh
|
|
|
|
case $(mvebu_board_name) in
|
|
armada-385-linksys-caiman|armada-385-linksys-cobra|armada-xp-linksys-mamba)
|
|
fw_setenv auto_recovery off
|
|
;;
|
|
esac
|
|
}
|