a56a5e
From 82286609c9736a967f36f0d77cdc585da7f3f506 Mon Sep 17 00:00:00 2001
966cef
From: Harald Hoyer <harald@redhat.com>
966cef
Date: Wed, 8 Jan 2014 15:38:44 +0100
966cef
Subject: [PATCH] dracut.sh: add /boot/efi to device paths
966cef
966cef
Add /boot/efi to device paths, so the filesystem driver is included
966cef
and it can be repaired in the initramfs.
966cef
---
966cef
 dracut.sh | 4 +++-
966cef
 1 file changed, 3 insertions(+), 1 deletion(-)
966cef
966cef
diff --git a/dracut.sh b/dracut.sh
1755ca
index 9a6521ec..cf027e7d 100755
966cef
--- a/dracut.sh
966cef
+++ b/dracut.sh
966cef
@@ -917,7 +917,9 @@ if [[ $hostonly ]]; then
966cef
         "/usr/sbin" \
966cef
         "/usr/lib" \
966cef
         "/usr/lib64" \
966cef
-        "/boot";
966cef
+        "/boot" \
966cef
+        "/boot/efi" \
966cef
+        ;
966cef
     do
966cef
         mp=$(readlink -f "$mp")
966cef
         mountpoint "$mp" >/dev/null 2>&1 || continue