2013-06-28 19:22:05 +08:00
|
|
|
#!/bin/sh /etc/rc.common
|
2021-06-26 19:04:49 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
#
|
|
|
|
|
# Copyright (C) 2013-2020 OpenWrt.org
|
2013-06-28 19:22:05 +08:00
|
|
|
|
2021-06-26 19:04:49 +08:00
|
|
|
START=11
|
2013-06-28 19:22:05 +08:00
|
|
|
|
2016-06-12 09:10:28 +08:00
|
|
|
boot() {
|
2013-06-28 19:22:05 +08:00
|
|
|
/sbin/block mount
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-12 09:10:28 +08:00
|
|
|
start() {
|
2019-08-28 18:26:53 +08:00
|
|
|
return 0
|
2016-06-12 09:10:28 +08:00
|
|
|
}
|
|
|
|
|
|
2019-06-05 19:18:41 +08:00
|
|
|
restart() {
|
2019-08-28 18:26:53 +08:00
|
|
|
return 0
|
2019-06-05 19:18:41 +08:00
|
|
|
}
|
|
|
|
|
|
2016-06-12 09:10:28 +08:00
|
|
|
stop() {
|
2013-06-28 19:22:05 +08:00
|
|
|
/sbin/block umount
|
|
|
|
|
}
|