448fa56b6a
- Make the release be 37 since 36 is the last one we actually built - Squash down the changelog for that as well - Fix some TPM errors on 32-bit (hdegoede) - More fixups to avoid compiler changes (pjones) - Put lsmmap into the EFI builds (pjones) Related: rhbz#1572126 Signed-off-by: Peter Jones <pjones@redhat.com>
37 lines
1017 B
Diff
37 lines
1017 B
Diff
From 2d7dabdbf322e8f679eeaefd48cb26b083cdeb1c Mon Sep 17 00:00:00 2001
|
|
From: Javier Martinez Canillas <javierm@redhat.com>
|
|
Date: Tue, 6 Feb 2018 11:02:09 +0100
|
|
Subject: [PATCH 202/246] Remove duplicated grub_exit() definition for grub-emu
|
|
platform
|
|
|
|
The grub_exit() function signature was changed on all platforms to take a
|
|
return code, but latter on a following commit the grub_exit() for the emu
|
|
platform was duplicated. It causes a build error so remove the duplicated
|
|
function definition.
|
|
|
|
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
|
|
---
|
|
grub-core/kern/emu/main.c | 6 ------
|
|
1 file changed, 6 deletions(-)
|
|
|
|
diff --git a/grub-core/kern/emu/main.c b/grub-core/kern/emu/main.c
|
|
index 7e47ec81263..55ea5a11ccd 100644
|
|
--- a/grub-core/kern/emu/main.c
|
|
+++ b/grub-core/kern/emu/main.c
|
|
@@ -72,12 +72,6 @@ grub_exit (int retval __attribute__((unused)))
|
|
grub_reboot ();
|
|
}
|
|
|
|
-void
|
|
-grub_exit (int retval __attribute__((unused)))
|
|
-{
|
|
- grub_reboot ();
|
|
-}
|
|
-
|
|
void
|
|
grub_machine_init (void)
|
|
{
|
|
--
|
|
2.17.1
|
|
|