You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh /etc/rc.common
|
|
# (C) 2013 openwrt.org
|
|
|
|
START=40
|
|
|
|
start() {
|
|
echo "this file has been obseleted. please call \"/sbin/block mount\" directly"
|
|
/sbin/block mount
|
|
}
|
|
|
|
stop() {
|
|
echo "this file has been obseleted. please call \"/sbin/block umount\" directly"
|
|
/sbin/block umount
|
|
}
|
|
|