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

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