forked from pool/grub2
a3bdb368a2
- Version bump to 2.06 * rediff - 0001-add-support-for-UEFI-network-protocols.patch - 0002-net-read-bracketed-ipv6-addrs-and-port-numbers.patch - 0003-Make-grub_error-more-verbose.patch - 0003-bootp-New-net_bootp6-command.patch - 0005-grub.texi-Add-net_bootp6-doument.patch - 0006-bootp-Add-processing-DHCPACK-packet-from-HTTP-Boot.patch - 0006-efi-Set-image-base-address-before-jumping-to-the-PE-.patch - 0008-efinet-Setting-DNS-server-from-UEFI-protocol.patch - 0046-squash-verifiers-Move-verifiers-API-to-kernel-image.patch - grub-install-force-journal-draining-to-ensure-data-i.patch - grub2-btrfs-01-add-ability-to-boot-from-subvolumes.patch - grub2-diskfilter-support-pv-without-metadatacopies.patch - grub2-efi-HP-workaround.patch - grub2-efi-xen-cfg-unquote.patch - grub2-efi-xen-chainload.patch - grub2-fix-menu-in-xen-host-server.patch - grub2-gfxmenu-support-scrolling-menu-entry-s-text.patch - grub2-install-remove-useless-check-PReP-partition-is-empty.patch - grub2-lvm-allocate-metadata-buffer-from-raw-contents.patch - grub2-mkconfig-default-entry-correction.patch - grub2-pass-corret-root-for-nfsroot.patch - grub2-s390x-03-output-7-bit-ascii.patch - grub2-s390x-04-grub2-install.patch - grub2-secureboot-install-signed-grub.patch - grub2-setup-try-fs-embed-if-mbr-gap-too-small.patch - use-grub2-as-a-package-name.patch * update by patch squashed: - 0001-Add-support-for-Linux-EFI-stub-loading-on-aarch64.patch OBS-URL: https://build.opensuse.org/request/show/904721 OBS-URL: https://build.opensuse.org/package/show/Base:System/grub2?expand=0&rev=386
98 lines
2.4 KiB
Diff
98 lines
2.4 KiB
Diff
|
|
v2: Add GRUB_FILE_TYPE_CONFIG to grub_file_open, see also upstream commit
|
|
ca0a4f689 verifiers: File type for fine-grained signature-verification controlling
|
|
|
|
Index: grub-2.06~rc1/grub-core/kern/efi/init.c
|
|
===================================================================
|
|
--- grub-2.06~rc1.orig/grub-core/kern/efi/init.c
|
|
+++ grub-2.06~rc1/grub-core/kern/efi/init.c
|
|
@@ -27,6 +27,7 @@
|
|
#include <grub/env.h>
|
|
#include <grub/mm.h>
|
|
#include <grub/kernel.h>
|
|
+#include <grub/file.h>
|
|
#include <grub/stack_protector.h>
|
|
|
|
#ifdef GRUB_STACK_PROTECTOR
|
|
@@ -114,6 +115,67 @@ grub_efi_init (void)
|
|
void (*grub_efi_net_config) (grub_efi_handle_t hnd,
|
|
char **device,
|
|
char **path);
|
|
+static char *
|
|
+workaround_efi_firmware_path (const char *device, const char *path)
|
|
+{
|
|
+ char *config = NULL;;
|
|
+ char *config_upper = NULL;
|
|
+ char *path_upper = NULL;
|
|
+ char *ret_path = NULL;
|
|
+ grub_file_t config_fd = NULL;
|
|
+ char *s;
|
|
+
|
|
+ if (!device || !path)
|
|
+ return NULL;
|
|
+
|
|
+ /* only workaround if booting off from cd device */
|
|
+ if (grub_strncmp (device, "cd", 2) != 0)
|
|
+ goto quit;
|
|
+
|
|
+ config = grub_xasprintf ("(%s)%s/grub.cfg", device, path);
|
|
+ config_fd = grub_file_open (config, GRUB_FILE_TYPE_CONFIG);
|
|
+
|
|
+ /* everything's fine, so quit the workaround */
|
|
+ if (config_fd)
|
|
+ goto quit;
|
|
+
|
|
+ /* reset grub error state because noone else does... */
|
|
+ grub_errno = GRUB_ERR_NONE;
|
|
+
|
|
+ /* try again, this time upper case path */
|
|
+ path_upper = grub_strdup (path);
|
|
+ if (! path_upper)
|
|
+ goto quit;
|
|
+
|
|
+ s = path_upper;
|
|
+ for (; *s; s++) *s = grub_toupper(*s);
|
|
+
|
|
+ config_upper = grub_xasprintf ("(%s)%s/grub.cfg", device, path_upper);
|
|
+ if (! config_upper)
|
|
+ goto quit;
|
|
+
|
|
+ config_fd = grub_file_open (config_upper, GRUB_FILE_TYPE_CONFIG);
|
|
+
|
|
+ /* if config can be found by the upper case path, return it */
|
|
+ if (config_fd)
|
|
+ ret_path = grub_strdup (path_upper);
|
|
+
|
|
+quit:
|
|
+
|
|
+ if (config_fd)
|
|
+ grub_file_close (config_fd);
|
|
+
|
|
+ if (grub_errno)
|
|
+ grub_errno = GRUB_ERR_NONE;
|
|
+
|
|
+ if (config)
|
|
+ grub_free (config);
|
|
+
|
|
+ if (config_upper)
|
|
+ grub_free (config_upper);
|
|
+
|
|
+ return ret_path;
|
|
+}
|
|
|
|
void
|
|
grub_machine_get_bootlocation (char **device, char **path)
|
|
@@ -138,6 +200,12 @@ grub_machine_get_bootlocation (char **de
|
|
p = grub_strrchr (*path, '/');
|
|
if (p)
|
|
*p = '\0';
|
|
+
|
|
+ if ((p = workaround_efi_firmware_path (*device, *path)))
|
|
+ {
|
|
+ grub_free (*path);
|
|
+ *path = p;
|
|
+ }
|
|
}
|
|
}
|
|
|