aboutsummaryrefslogtreecommitdiffstats
path: root/main/grub/grub2-accept-empty-module.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2020-01-15 15:39:04 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2020-01-15 16:58:48 +0000
commit319500e94bae0ae674ba945be29f17617823c7df (patch)
tree5e355e33c200fd3110b43f4b9c264cd89a9d3354 /main/grub/grub2-accept-empty-module.patch
parent313fffd7875542f30a4aa9313e90ee1d7c3651af (diff)
downloadaports-319500e94bae0ae674ba945be29f17617823c7df.tar.bz2
aports-319500e94bae0ae674ba945be29f17617823c7df.tar.xz
main/grub: upgrade to 2.04
Diffstat (limited to 'main/grub/grub2-accept-empty-module.patch')
-rw-r--r--main/grub/grub2-accept-empty-module.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/main/grub/grub2-accept-empty-module.patch b/main/grub/grub2-accept-empty-module.patch
deleted file mode 100644
index d3d75457dc..0000000000
--- a/main/grub/grub2-accept-empty-module.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: Michael Matz <matz@suse.com>
-
-Accept empty modules
-
-For the Xen platform the all_video.mod module is empty.
-With old binutils the .symtab section remained (containing
-only section symbols), so the check didn't trigger, but starting
-with binutils 2.27 not even a .symtab remains. As there are
-also no relocations that's no problem (and that is checked
-independendly).
---- grub-2.02~beta3/util/grub-module-verifierXX.c.mm 2016-02-11 10:57:41.000000000 +0000
-+++ grub-2.02~beta3/util/grub-module-verifierXX.c 2016-08-31 15:26:36.000000000 +0000
-@@ -199,7 +199,8 @@ check_symbols (const struct grub_module_
- Elf_Shdr *s = find_section (arch, e, ".moddeps");
-
- if (!s)
-- grub_util_error ("no symbol table and no .moddeps section");
-+ /*grub_util_error ("no symbol table and no .moddeps section");*/
-+ return; /* An empty module happens for all_video.module for Xen */
-
- if (!s->sh_size)
- grub_util_error ("no symbol table and empty .moddeps section");