mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-19 11:16:32 +00:00
15 lines
261 B
Plaintext
15 lines
261 B
Plaintext
|
#!/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
|
||
|
}
|