blob: f995e965447e5d9a9294362a3b5e91cf4d09262a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh /etc/rc.common
# (C) 2013 openwrt.org
START=40
start() {
echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
/sbin/block mount
}
stop() {
echo "this file has been obsoleted. please call \"/sbin/block umount\" directly"
/sbin/block umount
}
|