fstools: remove bogus warning in the fstab script
[openwrt/staging/lynxis/omap.git] / package / system / fstools / files / fstab.init
index f995e965447e5d9a9294362a3b5e91cf4d09262a..5faa8ecbb9bb41dd1eb3579c8abb2af9c5a34960 100644 (file)
@@ -3,12 +3,14 @@
 
 START=40
 
-start() {                            
-       echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
+boot() {
        /sbin/block mount
 }
 
-stop() {                            
-       echo "this file has been obsoleted. please call \"/sbin/block umount\" directly"
+start() {
+       echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
+}
+
+stop() {
        /sbin/block umount
 }