xen: Add some dummy headers for PVH mode

With Xen PVH mode adding a new machine type the machine related headers
need to be present for the build to succeed. Most of the headers just
need to include the related common i386 headers. Add those to the tree.

Note that xen_pvh/int.h needs to include pc/int_types.h instead of
pc/int.h in order to avoid the definition of grub_bios_interrupt().

xen_pvh/memory.h needs to include coreboot/memory.h (like some other
<machine>/memory.h do as well) as this contains just the needed stubs.

Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
Tested-by: Hans van Kranenburg <hans@knorrie.org>
This commit is contained in:
Juergen Gross 2018-12-07 13:11:33 +01:00 committed by Daniel Kiper
parent fc9d47ead5
commit 408de833bb
5 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1 @@
#include <grub/i386/pc/boot.h>

View File

@ -0,0 +1 @@
#include <grub/i386/pc/console.h>

View File

@ -0,0 +1 @@
#include <grub/i386/pc/int_types.h>

View File

@ -0,0 +1 @@
#include <grub/i386/coreboot/memory.h>

View File

@ -0,0 +1 @@
#include <grub/i386/pc/time.h>