[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 15/18] grub-module-verifier: Ignore all_video for xenpvh
From: |
Juergen Gross |
Subject: |
[PATCH v2 15/18] grub-module-verifier: Ignore all_video for xenpvh |
Date: |
Tue, 9 Oct 2018 13:03:14 +0200 |
From: Hans van Kranenburg <address@hidden>
This solves the build failing with "Error: no symbol table and no
.moddeps section"
Also see:
- 6371e9c10433578bb236a8284ddb9ce9e201eb59
- https://savannah.gnu.org/bugs/?49012
Signed-off-by: Hans van Kranenburg <address@hidden>
---
V2: new patch
Signed-off-by: Juergen Gross <address@hidden>
---
util/grub-module-verifier.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/util/grub-module-verifier.c b/util/grub-module-verifier.c
index 03ba1ab43..30baa43df 100644
--- a/util/grub-module-verifier.c
+++ b/util/grub-module-verifier.c
@@ -129,6 +129,7 @@ struct platform_whitelist {
static struct platform_whitelist whitelists[] = {
{"i386", "xen", (const char *[]) {"all_video", 0}},
+ {"i386", "xenpvh", (const char *[]) {"all_video", 0}},
{"x86_64", "xen", (const char *[]) {"all_video", 0}},
{"sparc64", "ieee1275", (const char *[]) {"all_video", 0}},
--
2.16.4
- Re: [PATCH v2 02/18] loader/linux: support passing rsdp address via boot params, (continued)
[PATCH v2 03/18] xen: carve out grant tab initialization into dedicated function, Juergen Gross, 2018/10/09
[PATCH v2 07/18] xen: add PVH specific defines to offset.h, Juergen Gross, 2018/10/09
[PATCH v2 06/18] xen: rearrange xen/init.c to prepare it for Xen PVH mode, Juergen Gross, 2018/10/09
[PATCH v2 15/18] grub-module-verifier: Ignore all_video for xenpvh,
Juergen Gross <=
[PATCH v2 09/18] xen: add PVH boot entry code, Juergen Gross, 2018/10/09
[PATCH v2 13/18] xen: init memory regions for PVH, Juergen Gross, 2018/10/09
[PATCH v2 14/18] xenpvh: add build runes for grub-core, Juergen Gross, 2018/10/09