15a2072
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
15a2072
From: Javier Martinez Canillas <javierm@redhat.com>
15a2072
Date: Tue, 24 Apr 2018 02:28:04 +0200
15a2072
Subject: [PATCH] Include OSTree path when searching kernels images if BLS
15a2072
 config is enabled
15a2072
15a2072
The OSTree based distros (i.e: Fedora Atomic) don't install kernel images
15a2072
in the /boot directory, but in /boot/ostree. So the 10_linux script isn't
15a2072
able to include these kernels in its list, so the linux_entry() function
15a2072
is never called.
15a2072
15a2072
This isn't a problem since the 10_linux script isn't used to populate the
15a2072
menu entries anyways, but instead a custom 15_ostree script is used. But
15a2072
for BLS we want the 10_linux script to generate the minimal grub.cfg that
15a2072
calls the blscfg command, so add the OSTree kernel images to the list.
15a2072
15a2072
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
15a2072
---
15a2072
 util/grub.d/10_linux.in | 6 ++++++
15a2072
 1 file changed, 6 insertions(+)
15a2072
15a2072
diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in
15a2072
index 61d0664fb5c..9682e97b7f5 100644
15a2072
--- a/util/grub.d/10_linux.in
15a2072
+++ b/util/grub.d/10_linux.in
15a2072
@@ -237,6 +237,12 @@ case "x$machine" in
15a2072
 	done ;;
15a2072
 esac
15a2072
 
15a2072
+if [ "x${GRUB_ENABLE_BLSCFG}" = "xtrue" ]; then
15a2072
+    for i in /boot/ostree/*/vmlinuz-* ; do
15a2072
+        if grub_file_is_not_garbage "$i" ; then list="$list $i" ; fi
15a2072
+    done
15a2072
+fi
15a2072
+
15a2072
 case "$machine" in
15a2072
     i?86) GENKERNEL_ARCH="x86" ;;
15a2072
     mips|mips64) GENKERNEL_ARCH="mips" ;;