[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v4 05/19] xen: add some dummy headers for PVH mode
From: |
Daniel Kiper |
Subject: |
Re: [PATCH v4 05/19] xen: add some dummy headers for PVH mode |
Date: |
Wed, 7 Nov 2018 13:21:15 +0100 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
On Fri, Nov 02, 2018 at 01:37:24PM +0100, Juergen Gross wrote:
> 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.
>
> Signed-off-by: Juergen Gross <address@hidden>
> ---
> V3: updated commit message (Daniel Kiper)
> xenpvh->xen_pvh (Daniel Kiper)
> ---
> include/grub/i386/xen_pvh/boot.h | 1 +
> include/grub/i386/xen_pvh/console.h | 1 +
> include/grub/i386/xen_pvh/int.h | 1 +
> include/grub/i386/xen_pvh/memory.h | 1 +
> include/grub/i386/xen_pvh/time.h | 1 +
> 5 files changed, 5 insertions(+)
> create mode 100644 include/grub/i386/xen_pvh/boot.h
> create mode 100644 include/grub/i386/xen_pvh/console.h
> create mode 100644 include/grub/i386/xen_pvh/int.h
> create mode 100644 include/grub/i386/xen_pvh/memory.h
> create mode 100644 include/grub/i386/xen_pvh/time.h
>
> diff --git a/include/grub/i386/xen_pvh/boot.h
> b/include/grub/i386/xen_pvh/boot.h
> new file mode 100644
> index 000000000..6cd23aa83
> --- /dev/null
> +++ b/include/grub/i386/xen_pvh/boot.h
> @@ -0,0 +1 @@
> +#include <grub/i386/pc/boot.h>
> diff --git a/include/grub/i386/xen_pvh/console.h
> b/include/grub/i386/xen_pvh/console.h
> new file mode 100644
> index 000000000..305a46d8e
> --- /dev/null
> +++ b/include/grub/i386/xen_pvh/console.h
> @@ -0,0 +1 @@
> +#include <grub/i386/pc/console.h>
> diff --git a/include/grub/i386/xen_pvh/int.h b/include/grub/i386/xen_pvh/int.h
> new file mode 100644
> index 000000000..0f1f9ee62
> --- /dev/null
> +++ b/include/grub/i386/xen_pvh/int.h
> @@ -0,0 +1 @@
> +#include <grub/i386/pc/int_types.h>
I think that this begs for explanation in the commit message
why not grub/i386/pc/int.h.
> diff --git a/include/grub/i386/xen_pvh/memory.h
> b/include/grub/i386/xen_pvh/memory.h
> new file mode 100644
> index 000000000..8dd6f7c8c
> --- /dev/null
> +++ b/include/grub/i386/xen_pvh/memory.h
> @@ -0,0 +1 @@
> +#include <grub/i386/coreboot/memory.h>
Hmmm... Why not include/grub/i386/pc/memory.h?
> diff --git a/include/grub/i386/xen_pvh/time.h
> b/include/grub/i386/xen_pvh/time.h
> new file mode 100644
> index 000000000..2298ee8f4
> --- /dev/null
> +++ b/include/grub/i386/xen_pvh/time.h
> @@ -0,0 +1 @@
> +#include <grub/i386/pc/time.h>
Daniel
[PATCH v4 03/19] xen: carve out grant tab initialization into dedicated function, Juergen Gross, 2018/11/02
[PATCH v4 04/19] xen: prepare common code for Xen PVH support, Juergen Gross, 2018/11/02
[PATCH v4 01/19] xen: add some xen headers, Juergen Gross, 2018/11/02