mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-27 17:18:59 +00:00
12 lines
122 B
Plaintext
12 lines
122 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=99
|
||
|
|
||
|
boot() {
|
||
|
case $(board_name) in
|
||
|
linksys,e8450)
|
||
|
mtd erase senv || true
|
||
|
;;
|
||
|
esac
|
||
|
}
|