From: Dave Young Date: Thu, 12 Jan 2012 08:00:31 +0000 (+0800) Subject: fstab-sys: mount it in initramfs instead of newroot if mount point is not found X-Git-Tag: 015~76 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a996d703e901c307dd9faabd7731d959f47370a4;p=thirdparty%2Fdracut.git fstab-sys: mount it in initramfs instead of newroot if mount point is not found fstab-sys now also handles device passed by dracut argument "--mount" The "--mount" mount point is possible not exist in $NEWROOT. Thus mount it in initramfs if mount point is not exist in real rootfs --- diff --git a/modules.d/95fstab-sys/mount-sys.sh b/modules.d/95fstab-sys/mount-sys.sh index a8fbd50b2..4de72859f 100755 --- a/modules.d/95fstab-sys/mount-sys.sh +++ b/modules.d/95fstab-sys/mount-sys.sh @@ -20,7 +20,12 @@ fstab_mount() { fi _fs=$(det_fs "$_dev" "$_fs") info "Mounting $_dev" - mount -v -t $_fs -o $_opts $_dev $NEWROOT/$_mp 2>&1 | vinfo + if [[ -d $NEWROOT/$_mp ]]; then + mount -v -t $_fs -o $_opts $_dev $NEWROOT/$_mp 2>&1 | vinfo + else + mkdir -p "$_mp" + mount -v -t $_fs -o $_opts $_dev $_mp 2>&1 | vinfo + fi done < $1 return 0 }