32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From a996d703e901c307dd9faabd7731d959f47370a4 Mon Sep 17 00:00:00 2001
|
|
From: Dave Young <dyoung@redhat.com>
|
|
Date: Thu, 12 Jan 2012 16:00:31 +0800
|
|
Subject: [PATCH] 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
|
|
---
|
|
modules.d/95fstab-sys/mount-sys.sh | 7 ++++++-
|
|
1 files changed, 6 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/modules.d/95fstab-sys/mount-sys.sh b/modules.d/95fstab-sys/mount-sys.sh
|
|
index a8fbd50..4de7285 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
|
|
}
|