mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
13 lines
143 B
Bash
Executable File
13 lines
143 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
boot() {
|
|
case $(board_name) in
|
|
linksys,mx2000|\
|
|
linksys,mx5500)
|
|
mtd resetbc s_env || true
|
|
;;
|
|
esac
|
|
}
|