1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 09:33:14 +03:00

[package] block-mount: fix fstab.init for IB and buildroot

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23296 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2010-10-07 15:15:54 +00:00
parent 4f3f9fa203
commit dfc66eb1b5

View File

@ -8,8 +8,6 @@
START=20
. /lib/functions/mount.sh
do_mount() {
local cfg="$1"
config_mount_by_section "$cfg"
@ -39,6 +37,8 @@ do_swapoff() {
}
start() {
. /lib/functions/mount.sh
config_load fstab
mkdir -p /var/lock
lock -w /var/lock/fstab.lck && {
@ -54,9 +54,12 @@ start() {
}
stop() {
. /lib/functions/mount.sh
config_load fstab
config_foreach do_unmount mount
config_foreach do_swapoff swap
swapoff -a
}