[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 4/4] configure: Let --without-default-features disable vhost-kern
|
From: |
Thomas Huth |
|
Subject: |
[PATCH 4/4] configure: Let --without-default-features disable vhost-kernel and vhost-vdpa |
|
Date: |
Tue, 13 Jul 2021 11:31:55 +0200 |
The vhost_kernel and vhost_vdpa variables should be pre-initialized with
the $default_feature setting so that these features get disabled when
the user runs the configure scripts with --without-default-features.
Reported-by: Cole Robinson <crobinso@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
configure | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configure b/configure
index 6c7336b763..89cc9b24eb 100755
--- a/configure
+++ b/configure
@@ -321,6 +321,7 @@ attr="auto"
xfs="$default_feature"
tcg="enabled"
membarrier="$default_feature"
+vhost_kernel="$default_feature"
vhost_net="$default_feature"
vhost_crypto="$default_feature"
vhost_scsi="$default_feature"
@@ -328,6 +329,7 @@ vhost_vsock="$default_feature"
vhost_user="no"
vhost_user_blk_server="auto"
vhost_user_fs="$default_feature"
+vhost_vdpa="$default_feature"
bpf="auto"
kvm="auto"
hax="auto"
--
2.27.0
- [PATCH 0/4] Fixes for the --without-default-features configure switch, Thomas Huth, 2021/07/13
- [PATCH 2/4] configure: Allow vnc to get disabled with --without-default-features, Thomas Huth, 2021/07/13
- [PATCH 3/4] configure: Fix the default setting of the "xen" feature, Thomas Huth, 2021/07/13
- [PATCH 4/4] configure: Let --without-default-features disable vhost-kernel and vhost-vdpa,
Thomas Huth <=
- Re: [PATCH 0/4] Fixes for the --without-default-features configure switch, Cole Robinson, 2021/07/13
- Re: [PATCH 0/4] Fixes for the --without-default-features configure switch, Paolo Bonzini, 2021/07/14