qca-ssdk: fix compiling for ipq60xx
[openwrt/openwrt.git] / package / system / fstools / files / fstab.init
1 #!/bin/sh /etc/rc.common
2 # SPDX-License-Identifier: GPL-2.0-only
3 #
4 # Copyright (C) 2013-2020 OpenWrt.org
5
6 START=11
7
8 boot() {
9 /sbin/block mount
10 }
11
12 start() {
13 return 0
14 }
15
16 restart() {
17 return 0
18 }
19
20 stop() {
21 /sbin/block umount
22 }