mediatek: remove "Ralink" from the target name
[openwrt/openwrt.git] / package / system / fstools / files / fstab.init
index be49470ef1d1411592e3287def8c62dc7670e48d..03a3993494819da84bf96950fe55f19319a7922d 100644 (file)
@@ -1,14 +1,22 @@
 #!/bin/sh /etc/rc.common
-# (C) 2013 openwrt.org
+# SPDX-License-Identifier: GPL-2.0-only
+#
+# Copyright (C) 2013-2020 OpenWrt.org
 
-START=40
+START=11
 
-start() {                            
-       echo "this file has been obseleted. please call \"/sbin/block mount\" directly"
+boot() {
        /sbin/block mount
 }
 
-stop() {                            
-       echo "this file has been obseleted. please call \"/sbin/block umount\" directly"
+start() {
+       return 0
+}
+
+restart() {
+       return 0
+}
+
+stop() {
        /sbin/block umount
 }