[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 18/18] xenpvh: add support to configure
From: |
Juergen Gross |
Subject: |
[PATCH v2 18/18] xenpvh: add support to configure |
Date: |
Tue, 9 Oct 2018 13:03:17 +0200 |
Support platform i386/xenpvh in configure.
Signed-off-by: Juergen Gross <address@hidden>
Reviewed-by: Daniel Kiper <address@hidden>
---
configure.ac | 3 +++
1 file changed, 3 insertions(+)
diff --git a/configure.ac b/configure.ac
index 5e63c4af3..96d81a3f2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -151,6 +151,7 @@ case "$target_cpu"-"$platform" in
i386-efi) ;;
x86_64-efi) ;;
i386-xen) ;;
+ i386-xenpvh) ;;
x86_64-xen) ;;
i386-pc) ;;
i386-multiboot) ;;
@@ -219,6 +220,7 @@ case "$platform" in
multiboot) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_MULTIBOOT=1"
;;
efi) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_EFI=1" ;;
xen) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_XEN=1" ;;
+ xenpvh) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_XENPVH=1" ;;
ieee1275) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_IEEE1275=1"
;;
uboot) machine_CPPFLAGS="$machine_CPPFLAGS -DGRUB_MACHINE_UBOOT=1" ;;
qemu) machine_CPPFLAGS="$machine_CPPFLAGS
-DGRUB_MACHINE_QEMU=1" ;;
@@ -1897,6 +1899,7 @@ AM_CONDITIONAL([COND_i386_coreboot], [test x$target_cpu =
xi386 -a x$platform =
AM_CONDITIONAL([COND_i386_multiboot], [test x$target_cpu = xi386 -a x$platform
= xmultiboot])
AM_CONDITIONAL([COND_x86_64_efi], [test x$target_cpu = xx86_64 -a x$platform =
xefi])
AM_CONDITIONAL([COND_i386_xen], [test x$target_cpu = xi386 -a x$platform =
xxen])
+AM_CONDITIONAL([COND_i386_xenpvh], [test x$target_cpu = xi386 -a x$platform =
xxenpvh])
AM_CONDITIONAL([COND_x86_64_xen], [test x$target_cpu = xx86_64 -a x$platform =
xxen])
AM_CONDITIONAL([COND_mips_loongson], [test x$target_cpu = xmipsel -a
x$platform = xloongson])
AM_CONDITIONAL([COND_mips_qemu_mips], [test "(" x$target_cpu = xmips -o
x$target_cpu = xmipsel ")" -a x$platform = xqemu_mips])
--
2.16.4
- Re: [PATCH v2 12/18] xen: setup Xen specific data for PVH, (continued)
- Re: [Xen-devel] [PATCH v2 12/18] xen: setup Xen specific data for PVH, Roger Pau Monné, 2018/10/19
- Re: [Xen-devel] [PATCH v2 12/18] xen: setup Xen specific data for PVH, Roger Pau Monné, 2018/10/19
- Re: [Xen-devel] [PATCH v2 12/18] xen: setup Xen specific data for PVH, Juergen Gross, 2018/10/19
- Re: [Xen-devel] [PATCH v2 12/18] xen: setup Xen specific data for PVH, Roger Pau Monné, 2018/10/29
- Re: [Xen-devel] [PATCH v2 12/18] xen: setup Xen specific data for PVH, Juergen Gross, 2018/10/29
- Re: [Xen-devel] [PATCH v2 12/18] xen: setup Xen specific data for PVH, Roger Pau Monné, 2018/10/30
- Re: [Xen-devel] [PATCH v2 12/18] xen: setup Xen specific data for PVH, Juergen Gross, 2018/10/30
[PATCH v2 18/18] xenpvh: add support to configure,
Juergen Gross <=
[PATCH v2 16/18] xenpvh: support building a standalone image, Juergen Gross, 2018/10/09
[PATCH v2 17/18] xenpvh: support grub-install for xenpvh, Juergen Gross, 2018/10/09
[PATCH v2 01/18] xen: add some xen headers, Juergen Gross, 2018/10/09
Re: [Xen-devel] [PATCH v2 00/18] xen: add pvh guest support, Juergen Gross, 2018/10/10