blob: 03a3993494819da84bf96950fe55f19319a7922d [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#!/bin/sh /etc/rc.common
2# SPDX-License-Identifier: GPL-2.0-only
3#
4# Copyright (C) 2013-2020 OpenWrt.org
5
6START=11
7
8boot() {
9 /sbin/block mount
10}
11
12start() {
13 return 0
14}
15
16restart() {
17 return 0
18}
19
20stop() {
21 /sbin/block umount
22}