mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 17:01:14 +00:00
14 lines
191 B
Plaintext
14 lines
191 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=97
|
||
|
boot() {
|
||
|
. /lib/functions.sh
|
||
|
|
||
|
case $(board_name) in
|
||
|
linksys,panamera)
|
||
|
# clear partialboots
|
||
|
nvram set partialboots=0 && nvram commit
|
||
|
;;
|
||
|
esac
|
||
|
}
|