15 lines
164 B
Plaintext
15 lines
164 B
Plaintext
|
|
#!/bin/sh /etc/rc.common
|
||
|
|
|
||
|
|
START=99
|
||
|
|
|
||
|
|
start() {
|
||
|
|
. /lib/functions.sh
|
||
|
|
|
||
|
|
case $(board_name) in
|
||
|
|
linksys,audi|\
|
||
|
|
linksys,viper)
|
||
|
|
mtd resetbc s_env || true
|
||
|
|
;;
|
||
|
|
esac
|
||
|
|
}
|