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:
parent
fc9d47ead5
commit
408de833bb
5 changed files with 5 additions and 0 deletions
1
include/grub/i386/xen_pvh/boot.h
Normal file
1
include/grub/i386/xen_pvh/boot.h
Normal file
|
@ -0,0 +1 @@
|
|||
#include <grub/i386/pc/boot.h>
|
1
include/grub/i386/xen_pvh/console.h
Normal file
1
include/grub/i386/xen_pvh/console.h
Normal file
|
@ -0,0 +1 @@
|
|||
#include <grub/i386/pc/console.h>
|
1
include/grub/i386/xen_pvh/int.h
Normal file
1
include/grub/i386/xen_pvh/int.h
Normal file
|
@ -0,0 +1 @@
|
|||
#include <grub/i386/pc/int_types.h>
|
1
include/grub/i386/xen_pvh/memory.h
Normal file
1
include/grub/i386/xen_pvh/memory.h
Normal file
|
@ -0,0 +1 @@
|
|||
#include <grub/i386/coreboot/memory.h>
|
1
include/grub/i386/xen_pvh/time.h
Normal file
1
include/grub/i386/xen_pvh/time.h
Normal file
|
@ -0,0 +1 @@
|
|||
#include <grub/i386/pc/time.h>
|
Loading…
Reference in a new issue