aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDr. David Alan Gilbert <dgilbert@redhat.com>2023-01-18 12:10:07 +0000
committerDr. David Alan Gilbert <dgilbert@redhat.com>2023-02-16 18:15:08 +0000
commit8ab5e8a503b55eb27672777cfedea902bb22a246 (patch)
treee49590cb5186115ab1dab7fbfdad41c581c5f979 /tools
parent5da7701e2a9f8454a24595857df7d24f7111645a (diff)
downloadqemu-8ab5e8a503b55eb27672777cfedea902bb22a246.zip
qemu-8ab5e8a503b55eb27672777cfedea902bb22a246.tar.gz
qemu-8ab5e8a503b55eb27672777cfedea902bb22a246.tar.bz2
virtiofsd: Remove build and docs glue
Remove all the virtiofsd build and docs infrastructure. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/meson.build13
-rw-r--r--tools/virtiofsd/50-qemu-virtiofsd.json.in5
-rw-r--r--tools/virtiofsd/meson.build18
3 files changed, 0 insertions, 36 deletions
diff --git a/tools/meson.build b/tools/meson.build
index 10eb3a0..e69de29 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -1,13 +0,0 @@
-have_virtiofsd = get_option('virtiofsd') \
- .require(targetos == 'linux',
- error_message: 'virtiofsd requires Linux') \
- .require(seccomp.found() and libcap_ng.found(),
- error_message: 'virtiofsd requires libcap-ng-devel and seccomp-devel') \
- .require(have_vhost_user,
- error_message: 'virtiofsd needs vhost-user-support') \
- .disable_auto_if(not have_tools and not have_system) \
- .allowed()
-
-if have_virtiofsd
- subdir('virtiofsd')
-endif
diff --git a/tools/virtiofsd/50-qemu-virtiofsd.json.in b/tools/virtiofsd/50-qemu-virtiofsd.json.in
deleted file mode 100644
index 9bcd86f..0000000
--- a/tools/virtiofsd/50-qemu-virtiofsd.json.in
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "description": "QEMU virtiofsd vhost-user-fs",
- "type": "fs",
- "binary": "@libexecdir@/virtiofsd"
-}
diff --git a/tools/virtiofsd/meson.build b/tools/virtiofsd/meson.build
deleted file mode 100644
index c134ba6..0000000
--- a/tools/virtiofsd/meson.build
+++ /dev/null
@@ -1,18 +0,0 @@
-executable('virtiofsd', files(
- 'buffer.c',
- 'fuse_opt.c',
- 'fuse_log.c',
- 'fuse_lowlevel.c',
- 'fuse_signals.c',
- 'fuse_virtio.c',
- 'helper.c',
- 'passthrough_ll.c',
- 'passthrough_seccomp.c'),
- dependencies: [seccomp, qemuutil, libcap_ng, vhost_user],
- install: true,
- install_dir: get_option('libexecdir'))
-
-configure_file(input: '50-qemu-virtiofsd.json.in',
- output: '50-qemu-virtiofsd.json',
- configuration: { 'libexecdir' : get_option('prefix') / get_option('libexecdir') },
- install_dir: qemu_datadir / 'vhost-user')