e1531466e1
This change updates grub to the 2.04 release. The new release changed how grub is built, so the bootstrap and bootstrap.conf files have to be added to the dist-git. Also, the gitignore file changed so it has to be updated. Since the patches have been forward ported to 2.04, there's no need for a logic to maintain a patch with the delta between the release and the grub master branch. So the release-to-master.patch is dropped and no longer is updated by the do-rebase script. Also since gnulib isn't part of the grub repository anymore and cloned by the boostrap tool, a gnulib tarball is included as other source file and copied before calling the bootstrap tool. That way grub can be built even in builders that only have access to the sources lookaside cache. Resolves: rhbz#1727279 Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Javier Martinez Canillas <javierm@redhat.com>
|
|
Date: Tue, 9 Apr 2019 12:42:37 +0200
|
|
Subject: [PATCH] Print grub-emu linux loader messages as debug
|
|
|
|
They just polute the output and should better be debug messages instead.
|
|
|
|
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
|
|
---
|
|
grub-core/loader/emu/linux.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/grub-core/loader/emu/linux.c b/grub-core/loader/emu/linux.c
|
|
index 5b85b225eed..22ab6af1727 100644
|
|
--- a/grub-core/loader/emu/linux.c
|
|
+++ b/grub-core/loader/emu/linux.c
|
|
@@ -50,7 +50,7 @@ grub_linux_boot (void)
|
|
initrd_param = grub_xasprintf("%s", "");
|
|
}
|
|
|
|
- grub_printf("%serforming 'kexec -l %s %s %s'\n",
|
|
+ grub_dprintf ("linux", "%serforming 'kexec -l %s %s %s'\n",
|
|
(kexecute) ? "P" : "Not p",
|
|
kernel_path, initrd_param, boot_cmdline);
|
|
|
|
@@ -67,7 +67,7 @@ grub_linux_boot (void)
|
|
if (kexecute < 1)
|
|
grub_fatal (N_("Use '"PACKAGE"-emu --kexec' to force a system restart."));
|
|
|
|
- grub_printf("Performing 'systemctl kexec' (%s) ",
|
|
+ grub_dprintf ("linux", "Performing 'systemctl kexec' (%s) ",
|
|
(kexecute==1) ? "do-or-die" : "just-in-case");
|
|
rc = grub_util_exec (systemctl);
|
|
|