forked from pool/grub2
e774d7b0f3
Revert, https://bugzilla.opensuse.org/show_bug.cgi?id=1154809 OBS-URL: https://build.opensuse.org/request/show/741989 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grub2?expand=0&rev=211
23 lines
974 B
Diff
23 lines
974 B
Diff
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).
|
|
Index: grub-2.02~rc1/util/grub-module-verifierXX.c
|
|
===================================================================
|
|
--- grub-2.02~rc1.orig/util/grub-module-verifierXX.c
|
|
+++ grub-2.02~rc1/util/grub-module-verifierXX.c
|
|
@@ -224,7 +224,8 @@ check_symbols (const struct grub_module_
|
|
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");
|