[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[QEMU][PATCH v6 08/10] meson.build: do not set have_xen_pci_passthrough
From: |
Vikram Garhwal |
Subject: |
[QEMU][PATCH v6 08/10] meson.build: do not set have_xen_pci_passthrough for aarch64 targets |
Date: |
Tue, 11 Apr 2023 15:47:44 -0700 |
From: Stefano Stabellini <stefano.stabellini@amd.com>
have_xen_pci_passthrough is only used for Xen x86 VMs.
Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
---
meson.build | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meson.build b/meson.build
index 29f8644d6d..52c3995c9d 100644
--- a/meson.build
+++ b/meson.build
@@ -1467,6 +1467,8 @@ have_xen_pci_passthrough =
get_option('xen_pci_passthrough') \
error_message: 'Xen PCI passthrough requested but Xen not enabled')
\
.require(targetos == 'linux',
error_message: 'Xen PCI passthrough not available on this
platform') \
+ .require(cpu == 'x86' or cpu == 'x86_64',
+ error_message: 'Xen PCI passthrough not available on this
platform') \
.allowed()
--
2.17.0
- [QEMU][PATCH v6 02/10] hw/i386/xen: rearrange xen_hvm_init_pc, (continued)
- [QEMU][PATCH v6 02/10] hw/i386/xen: rearrange xen_hvm_init_pc, Vikram Garhwal, 2023/04/11
- [QEMU][PATCH v6 01/10] hw/i386/xen/: move xen-mapcache.c to hw/xen/, Vikram Garhwal, 2023/04/11
- [QEMU][PATCH v6 03/10] hw/i386/xen/xen-hvm: move x86-specific fields out of XenIOState, Vikram Garhwal, 2023/04/11
- [QEMU][PATCH v6 05/10] include/hw/xen/xen_common: return error from xen_create_ioreq_server, Vikram Garhwal, 2023/04/11
- [QEMU][PATCH v6 06/10] hw/xen/xen-hvm-common: skip ioreq creation on ioreq registration failure, Vikram Garhwal, 2023/04/11
- [QEMU][PATCH v6 07/10] hw/xen/xen-hvm-common: Use g_new and error_report, Vikram Garhwal, 2023/04/11
- [QEMU][PATCH v6 10/10] meson.build: enable xenpv machine build for ARM, Vikram Garhwal, 2023/04/11
- [QEMU][PATCH v6 04/10] xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common, Vikram Garhwal, 2023/04/11
- [QEMU][PATCH v6 08/10] meson.build: do not set have_xen_pci_passthrough for aarch64 targets,
Vikram Garhwal <=
- [QEMU][PATCH v6 09/10] hw/arm: introduce xenpvh machine, Vikram Garhwal, 2023/04/11