2018-07-12 14:56:34 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-01-17 22:04:09 +00:00
|
|
|
From: Peter Jones <pjones@redhat.com>
|
|
|
|
Date: Thu, 20 Apr 2017 13:29:06 -0400
|
2018-07-10 18:39:10 +00:00
|
|
|
Subject: [PATCH] Don't guess /boot/efi/ as HFS+ on ppc machines in
|
2018-01-17 22:04:09 +00:00
|
|
|
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
|
2021-03-12 21:54:28 +00:00
|
|
|
index c03214bdfcf..1e47491bc21 100644
|
2018-01-17 22:04:09 +00:00
|
|
|
--- a/util/grub-install.c
|
|
|
|
+++ b/util/grub-install.c
|
2021-03-12 21:54:28 +00:00
|
|
|
@@ -1190,18 +1190,8 @@ main (int argc, char *argv[])
|
2018-01-17 22:04:09 +00:00
|
|
|
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);
|