summaryrefslogtreecommitdiff
path: root/package/system/fstools/files/fstab.init
blob: 5faa8ecbb9bb41dd1eb3579c8abb2af9c5a34960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh /etc/rc.common
# (C) 2013 openwrt.org

START=40

boot() {
	/sbin/block mount
}

start() {
	echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
}

stop() {
	/sbin/block umount
}