Blame SOURCES/0072-dracut.sh-add-boot-efi-to-device-paths.patch

966cef
From dcf94be9a3817c9b11b6ac77d4f42835d62d1a05 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
966cef
index 9a6521e..cf027e7 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