mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-24 22:35:28 +00:00
fa8b2484d0
- Pull in fixes for TSC calibration driver preference (prefer pmtimer over PIT) to boot on Apollo Lake systems with no PIT - Fix pmtimer calibration to not take forever to fail on kvm. Signed-off-by: Peter Jones <pjones@redhat.com>
44 lines
1.3 KiB
Diff
44 lines
1.3 KiB
Diff
From d47f8b7d1d9bf708cfd989d20cc0fd87ba72c058 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Thu, 20 Apr 2017 13:29:06 -0400
|
|
Subject: [PATCH 193/198] Don't guess /boot/efi/ as HFS+ on ppc machines in
|
|
grub-install
|
|
|
|
This should never be trying this, and since we've consolidated the
|
|
grubenv to always be on /boot/efi/EFI/fedora/, this code causes it to
|
|
always make the wrong decision.
|
|
|
|
Resolves: rhbz#1484474
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
---
|
|
util/grub-install.c | 12 +-----------
|
|
1 file changed, 1 insertion(+), 11 deletions(-)
|
|
|
|
diff --git a/util/grub-install.c b/util/grub-install.c
|
|
index cd84a72b9..48f2abc3e 100644
|
|
--- a/util/grub-install.c
|
|
+++ b/util/grub-install.c
|
|
@@ -1159,18 +1159,8 @@ main (int argc, char *argv[])
|
|
char *d;
|
|
|
|
is_guess = 1;
|
|
- d = grub_util_path_concat (2, bootdir, "macppc");
|
|
- if (!grub_util_is_directory (d))
|
|
- {
|
|
- free (d);
|
|
- d = grub_util_path_concat (2, bootdir, "efi");
|
|
- }
|
|
/* Find the Mac HFS(+) System Partition. */
|
|
- if (!grub_util_is_directory (d))
|
|
- {
|
|
- free (d);
|
|
- d = grub_util_path_concat (2, bootdir, "EFI");
|
|
- }
|
|
+ d = grub_util_path_concat (2, bootdir, "macppc");
|
|
if (!grub_util_is_directory (d))
|
|
{
|
|
free (d);
|
|
--
|
|
2.14.3
|
|
|