Ver código fonte

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

SVN-Revision: 23296
Jo-Philipp Wich 15 anos atrás
pai
commit
613a513fe4
1 arquivos alterados com 5 adições e 2 exclusões
  1. 5 2
      package/block-mount/files/fstab.init

+ 5 - 2
package/block-mount/files/fstab.init

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