21 lines
169 B
Plaintext
Raw Normal View History

2017-09-06 19:19:45 +08:00
#!/bin/sh /etc/rc.common
# (C) 2013 openwrt.org
START=40
boot() {
/sbin/block mount
}
start() {
2021-06-15 17:58:07 +08:00
return 0
2019-12-08 09:30:10 -08:00
}
restart() {
2021-06-15 17:58:07 +08:00
return 0
2017-09-06 19:19:45 +08:00
}
stop() {
/sbin/block umount
}