2013-06-28 11:22:05 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
# (C) 2013 openwrt.org
|
|
|
|
|
|
|
|
START=40
|
|
|
|
|
|
|
|
start() {
|
2015-07-08 14:26:12 +00:00
|
|
|
echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
|
2013-06-28 11:22:05 +00:00
|
|
|
/sbin/block mount
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2015-07-08 14:26:12 +00:00
|
|
|
echo "this file has been obsoleted. please call \"/sbin/block umount\" directly"
|
2013-06-28 11:22:05 +00:00
|
|
|
/sbin/block umount
|
|
|
|
}
|