mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-23 08:44:17 +00:00
31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
Description: Build part_msdos and vfat into EFI boot images
|
|
Author: Mario Limonciello <Mario_Limonciello@dell.com>
|
|
Author: Colin Watson <cjwatson@ubuntu.com>
|
|
Bug-Ubuntu: https://bugs.launchpad.net/bugs/677758
|
|
Forwarded: http://lists.gnu.org/archive/html/grub-devel/2011-01/msg00028.html
|
|
Last-Update: 2013-12-20
|
|
|
|
Index: b/util/grub-mkrescue.c
|
|
===================================================================
|
|
--- a/util/grub-mkrescue.c
|
|
+++ b/util/grub-mkrescue.c
|
|
@@ -636,12 +636,18 @@
|
|
make_image_fwdisk_abs (GRUB_INSTALL_PLATFORM_IA64_EFI, "ia64-efi", imgname);
|
|
free (imgname);
|
|
|
|
+ grub_install_push_module ("part_msdos");
|
|
+ grub_install_push_module ("fat");
|
|
+
|
|
img64 = grub_util_path_concat (2, efidir_efi_boot, "bootx64.efi");
|
|
make_image_fwdisk_abs (GRUB_INSTALL_PLATFORM_X86_64_EFI, "x86_64-efi", img64);
|
|
|
|
img32 = grub_util_path_concat (2, efidir_efi_boot, "bootia32.efi");
|
|
make_image_fwdisk_abs (GRUB_INSTALL_PLATFORM_I386_EFI, "i386-efi", img32);
|
|
|
|
+ grub_install_pop_module ();
|
|
+ grub_install_pop_module ();
|
|
+
|
|
imgname = grub_util_path_concat (2, efidir_efi_boot, "bootarm.efi");
|
|
make_image_fwdisk_abs (GRUB_INSTALL_PLATFORM_ARM_EFI, "arm-efi", imgname);
|
|
free (imgname);
|