Skip to content
Snippets Groups Projects
Commit a4b4b40b authored by Stefano Stabellini's avatar Stefano Stabellini
Browse files

meson.build: do not set have_xen_pci_passthrough for aarch64 targets


have_xen_pci_passthrough is only used for Xen x86 VMs.

Signed-off-by: default avatarStefano Stabellini <stefano.stabellini@amd.com>
Reviewed-by: default avatarAlex Bennée <alex.bennee@linaro.org>
parent 6c4193ed
No related branches found
No related tags found
No related merge requests found
......@@ -1726,6 +1726,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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment