mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
22 lines
208 B
Bash
22 lines
208 B
Bash
#!/bin/sh /etc/rc.common
|
|
# (C) 2013 openwrt.org
|
|
|
|
START=40
|
|
|
|
boot() {
|
|
/sbin/block mount
|
|
}
|
|
|
|
start() {
|
|
/sbin/block mount
|
|
}
|
|
|
|
restart() {
|
|
/sbin/block umount
|
|
/sbin/block mount
|
|
}
|
|
|
|
stop() {
|
|
/sbin/block umount
|
|
}
|