diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-07 15:15:54 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-07 15:15:54 +0000 |
commit | 613a513fe4619dc9c74b6817be7b71e855055e4e (patch) | |
tree | 4ef4d9fa02b802208746e6f2ece90e7496d41b1f | |
parent | 726123e2e142abba72e7dc4da89be79200b506d9 (diff) | |
download | upstream-613a513fe4619dc9c74b6817be7b71e855055e4e.tar.gz upstream-613a513fe4619dc9c74b6817be7b71e855055e4e.tar.bz2 upstream-613a513fe4619dc9c74b6817be7b71e855055e4e.zip |
block-mount: fix fstab.init for IB and buildroot
SVN-Revision: 23296
-rw-r--r-- | package/block-mount/files/fstab.init | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package/block-mount/files/fstab.init b/package/block-mount/files/fstab.init index 6aeee8f340..a3e0338f4e 100644 --- a/package/block-mount/files/fstab.init +++ b/package/block-mount/files/fstab.init @@ -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 } + |