aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schoenebeck <qemu_oss@crudebyte.com>2023-05-11 16:12:34 +0200
committerChristian Schoenebeck <qemu_oss@crudebyte.com>2023-05-16 16:21:54 +0200
commit3887702e5f8995638c98f9d9326b4913fb107be7 (patch)
tree3f31e66f895d29a1a0631e450bcea77d65564b67
parent92e667f6fd5806a6a705a2a43e572bd9ec6819da (diff)
downloadqemu-3887702e5f8995638c98f9d9326b4913fb107be7.zip
qemu-3887702e5f8995638c98f9d9326b4913fb107be7.tar.gz
qemu-3887702e5f8995638c98f9d9326b4913fb107be7.tar.bz2
configure: make clear that VirtFS is 9p
Add '9P' to the summary output section of 'VirtFS' to avoid being confused with virtiofs. Based-on: <20230503130757.863824-1-pefoley@google.com> Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com> Reviewed-by: Greg Kurz <groug@kaod.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <E1px7Id-0000NE-OQ@lizzy.crudebyte.com>
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index c6b0514..5e2807e 100644
--- a/meson.build
+++ b/meson.build
@@ -3930,8 +3930,8 @@ if have_block
summary_info += {'Block whitelist (rw)': get_option('block_drv_rw_whitelist')}
summary_info += {'Block whitelist (ro)': get_option('block_drv_ro_whitelist')}
summary_info += {'Use block whitelist in tools': get_option('block_drv_whitelist_in_tools')}
- summary_info += {'VirtFS support': have_virtfs}
- summary_info += {'VirtFS Proxy Helper support': have_virtfs_proxy_helper}
+ summary_info += {'VirtFS (9P) support': have_virtfs}
+ summary_info += {'VirtFS (9P) Proxy Helper support': have_virtfs_proxy_helper}
summary_info += {'Live block migration': config_host_data.get('CONFIG_LIVE_BLOCK_MIGRATION')}
summary_info += {'replication support': config_host_data.get('CONFIG_REPLICATION')}
summary_info += {'bochs support': get_option('bochs').allowed()}