summaryrefslogtreecommitdiffstats
path: root/src/initramfs
diff options
context:
space:
mode:
authorSebastian Schmelzer2011-05-25 21:39:50 +0200
committerSebastian Schmelzer2011-05-25 21:39:50 +0200
commitafc6289e3173530cc3b62c771b6926195e3f089c (patch)
tree9bb61108e62938e77f6a4f5e23e2e749057f091f /src/initramfs
parentMerge branch 'master' of openslx.org:openslx/core (diff)
downloadcore-afc6289e3173530cc3b62c771b6926195e3f089c.tar.gz
core-afc6289e3173530cc3b62c771b6926195e3f089c.tar.xz
core-afc6289e3173530cc3b62c771b6926195e3f089c.zip
next try ;)
Diffstat (limited to 'src/initramfs')
-rwxr-xr-xsrc/initramfs/scripts/init22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/initramfs/scripts/init b/src/initramfs/scripts/init
index 40641a36..3938c978 100755
--- a/src/initramfs/scripts/init
+++ b/src/initramfs/scripts/init
@@ -724,32 +724,32 @@ runinithook '40-started-hw-config'
union_type=""
if [ ${aufs} -eq 1 ]; then
aufs_in_kernel=$(grep -c aufs /proc/filesystems)
- if [ ${aufs_in_kernel} -ne 0 ]; then
+ if [ ${aufs_in_kernel} -eq 0 ]; then
modprobe ${MODPRV} aufs 2>/dev/null
- aufs_have_module=$(lsmod | grep -qe "^aufs")
- [ $(aufs_have_module) -ne 0 ] && union_type="AUFS"
+ aufs_have_module=$(lsmod | grep -ce "^aufs")
+ [ ${aufs_have_module} -ne 0 ] && union_type="AUFS"
else
union_type="AUFS"
fi
fi
-if [ ${unionfs} -eq 1 ]; then
+if [ -z ${union_type} -a ${unionfs} -eq 1 ]; then
unionfs_in_kernel=$(grep -c unionfs /proc/filesystems)
- if [ ${unionfs_in_kernel} -ne 0 ]; then
+ if [ ${unionfs_in_kernel} -eq 0 ]; then
modprobe ${MODPRV} unionfs 2>/dev/null
- unionfs_have_module=$(lsmod | grep -qe "^unionfs")
- [ $(unionfs_have_module) -ne 0 ] && union_type="UnionFS"
+ unionfs_have_module=$(lsmod | grep -ce "^unionfs")
+ [ ${unionfs_have_module} -ne 0 ] && union_type="UnionFS"
else
union_type="UnionFS"
fi
fi
-if [ ${fuse} -eq 1 ]; then
+if [ -z ${union_type} -a ! -z ${fuse} ]; then
fuse_in_kernel=$(grep -c fuse /proc/filesystems)
- if [ ${fuse_in_kernel} -ne 0 ]; then
+ if [ ${fuse_in_kernel} -eq 0 ]; then
modprobe ${MODPRV} fuse 2>/dev/null
- fuse_have_module=$(lsmod | grep -qe "^fuse")
- [ $(fuse_have_module) -ne 0 ] && union_type="Fuse"
+ fuse_have_module=$(lsmod | grep -ce "^fuse")
+ [ ${fuse_have_module} -ne 0 ] && union_type="Fuse"
else
union_type="Fuse"
fi