[PATCH] i386: xen: fix compilation --without-default-devices

Paolo Bonzini posted 1 patch 5 months, 2 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20240209215914.131345-1-pbonzini@redhat.com
Maintainers: Paolo Bonzini <pbonzini@redhat.com>
accel/Kconfig | 1 +
1 file changed, 1 insertion(+)
[PATCH] i386: xen: fix compilation --without-default-devices
Posted by Paolo Bonzini 5 months, 2 weeks ago
The xenpv machine type requires XEN_BUS, so select it.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 accel/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/accel/Kconfig b/accel/Kconfig
index a30cf2eb483..794e0d18d21 100644
--- a/accel/Kconfig
+++ b/accel/Kconfig
@@ -16,3 +16,4 @@ config KVM
 config XEN
     bool
     select FSDEV_9P if VIRTFS
+    select XEN_BUS
-- 
2.43.0
Re: [PATCH] i386: xen: fix compilation --without-default-devices
Posted by Manos Pitsidianakis 5 months, 1 week ago
On Fri, 09 Feb 2024 23:59, Paolo Bonzini <pbonzini@redhat.com> wrote:
>The xenpv machine type requires XEN_BUS, so select it.
>
>Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>---
> accel/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
>diff --git a/accel/Kconfig b/accel/Kconfig
>index a30cf2eb483..794e0d18d21 100644
>--- a/accel/Kconfig
>+++ b/accel/Kconfig
>@@ -16,3 +16,4 @@ config KVM
> config XEN
>     bool
>     select FSDEV_9P if VIRTFS
>+    select XEN_BUS
>-- 
>2.43.0
>


Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>