mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-08 14:03:06 +00:00
14 lines
149 B
Plaintext
14 lines
149 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=99
|
||
|
|
||
|
start() {
|
||
|
. /lib/functions.sh
|
||
|
|
||
|
case $(board_name) in
|
||
|
linksys,ea8500)
|
||
|
mtd resetbc s_env || true
|
||
|
;;
|
||
|
esac
|
||
|
}
|