2021-10-07 15:08:29 +02:00
|
|
|
# These options do not correspond to a --enable/--disable-* option
|
|
|
|
# on the configure script command line. If you add more, list them in
|
|
|
|
# scripts/meson-buildoptions.py's SKIP_OPTIONS constant too.
|
|
|
|
|
2020-08-26 13:04:16 +02:00
|
|
|
option('qemu_suffix', type : 'string', value: 'qemu',
|
2020-08-26 13:04:15 +02:00
|
|
|
description: 'Suffix for QEMU data/modules/config directories (can be empty)')
|
2022-04-20 17:33:57 +02:00
|
|
|
option('docdir', type : 'string', value : 'share/doc',
|
2020-08-26 13:04:17 +02:00
|
|
|
description: 'Base directory for documentation installation (can be empty)')
|
2022-06-24 17:40:42 +02:00
|
|
|
option('qemu_firmwarepath', type : 'array', value : ['share/qemu-firmware'],
|
2020-10-16 09:19:14 +02:00
|
|
|
description: 'search PATH for firmware files')
|
2022-04-20 17:33:54 +02:00
|
|
|
option('pkgversion', type : 'string', value : '',
|
|
|
|
description: 'use specified string as sub-version of the package')
|
2021-10-13 13:43:36 +02:00
|
|
|
option('smbd', type : 'string', value : '',
|
|
|
|
description: 'Path to smbd for slirp networking')
|
2020-10-16 00:06:25 +02:00
|
|
|
option('sphinx_build', type : 'string', value : '',
|
2022-04-20 17:33:48 +02:00
|
|
|
description: 'Use specified sphinx-build for building document')
|
2021-10-13 13:19:00 +02:00
|
|
|
option('iasl', type : 'string', value : '',
|
|
|
|
description: 'Path to ACPI disassembler')
|
2022-04-20 17:33:52 +02:00
|
|
|
option('tls_priority', type : 'string', value : 'NORMAL',
|
|
|
|
description: 'Default TLS protocol/cipher priority string')
|
2020-11-20 08:38:22 +01:00
|
|
|
option('default_devices', type : 'boolean', value : true,
|
|
|
|
description: 'Include a default selection of devices in emulators')
|
2021-10-07 15:06:09 +02:00
|
|
|
option('audio_drv_list', type: 'array', value: ['default'],
|
2022-09-07 15:23:42 +02:00
|
|
|
choices: ['alsa', 'coreaudio', 'default', 'dsound', 'jack', 'oss', 'pa', 'sdl', 'sndio'],
|
2021-10-07 15:06:09 +02:00
|
|
|
description: 'Set audio driver list')
|
2022-04-20 17:33:53 +02:00
|
|
|
option('block_drv_rw_whitelist', type : 'string', value : '',
|
|
|
|
description: 'set block driver read-write whitelist (by default affects only QEMU, not tools like qemu-img)')
|
|
|
|
option('block_drv_ro_whitelist', type : 'string', value : '',
|
|
|
|
description: 'set block driver read-only whitelist (by default affects only QEMU, not tools like qemu-img)')
|
2022-04-20 17:33:55 +02:00
|
|
|
option('interp_prefix', type : 'string', value : '/usr/gnemul/qemu-%M',
|
|
|
|
description: 'where to find shared libraries etc., use %M for cpu name')
|
2021-10-07 15:08:12 +02:00
|
|
|
option('fuzzing_engine', type : 'string', value : '',
|
|
|
|
description: 'fuzzing engine library for OSS-Fuzz')
|
2021-10-07 15:08:14 +02:00
|
|
|
option('trace_file', type: 'string', value: 'trace',
|
|
|
|
description: 'Trace file prefix for simple backend')
|
2021-10-07 15:06:09 +02:00
|
|
|
|
2021-10-07 15:08:29 +02:00
|
|
|
# Everything else can be set via --enable/--disable-* option
|
|
|
|
# on the configure script command line. After adding an option
|
|
|
|
# here make sure to run "make update-buildoptions".
|
|
|
|
|
2020-10-16 00:06:25 +02:00
|
|
|
option('docs', type : 'feature', value : 'auto',
|
|
|
|
description: 'Documentations build support')
|
2021-10-07 15:08:12 +02:00
|
|
|
option('fuzzing', type : 'boolean', value: false,
|
|
|
|
description: 'build fuzzing targets')
|
2020-12-10 20:04:12 +01:00
|
|
|
option('gettext', type : 'feature', value : 'auto',
|
2020-09-01 07:59:23 +02:00
|
|
|
description: 'Localization of the GTK+ user interface')
|
2022-04-20 17:33:46 +02:00
|
|
|
option('module_upgrades', type : 'boolean', value : false,
|
|
|
|
description: 'try to load modules from alternate paths for upgrades')
|
2020-10-16 09:32:52 +02:00
|
|
|
option('install_blobs', type : 'boolean', value : true,
|
|
|
|
description: 'install provided firmware blobs')
|
2020-09-01 13:51:16 +02:00
|
|
|
option('sparse', type : 'feature', value : 'auto',
|
|
|
|
description: 'sparse checker')
|
2021-10-15 16:47:43 +02:00
|
|
|
option('guest_agent', type : 'feature', value : 'auto',
|
|
|
|
description: 'Build QEMU Guest Agent')
|
2021-01-21 11:49:04 +01:00
|
|
|
option('guest_agent_msi', type : 'feature', value : 'auto',
|
|
|
|
description: 'Build MSI package for the QEMU Guest Agent')
|
2021-10-15 16:47:43 +02:00
|
|
|
option('tools', type : 'feature', value : 'auto',
|
|
|
|
description: 'build support utilities that come with QEMU')
|
2022-02-01 13:53:43 +01:00
|
|
|
option('qga_vss', type : 'feature', value: 'auto',
|
|
|
|
description: 'build QGA VSS support (broken with MinGW)')
|
2020-09-01 07:59:23 +02:00
|
|
|
|
2020-09-01 17:15:30 +02:00
|
|
|
option('malloc_trim', type : 'feature', value : 'auto',
|
|
|
|
description: 'enable libc malloc_trim() for memory optimization')
|
|
|
|
option('malloc', type : 'combo', choices : ['system', 'tcmalloc', 'jemalloc'],
|
|
|
|
value: 'system', description: 'choose memory allocator to use')
|
|
|
|
|
2020-09-18 10:57:25 +02:00
|
|
|
option('kvm', type: 'feature', value: 'auto',
|
|
|
|
description: 'KVM acceleration support')
|
|
|
|
option('hax', type: 'feature', value: 'auto',
|
|
|
|
description: 'HAX acceleration support')
|
|
|
|
option('whpx', type: 'feature', value: 'auto',
|
|
|
|
description: 'WHPX acceleration support')
|
|
|
|
option('hvf', type: 'feature', value: 'auto',
|
|
|
|
description: 'HVF acceleration support')
|
2021-04-02 22:25:32 +02:00
|
|
|
option('nvmm', type: 'feature', value: 'auto',
|
|
|
|
description: 'NVMM acceleration support')
|
2020-09-18 10:57:25 +02:00
|
|
|
option('xen', type: 'feature', value: 'auto',
|
|
|
|
description: 'Xen backend support')
|
|
|
|
option('xen_pci_passthrough', type: 'feature', value: 'auto',
|
|
|
|
description: 'Xen PCI passthrough support')
|
2022-04-20 17:33:59 +02:00
|
|
|
option('tcg', type: 'feature', value: 'enabled',
|
2020-09-18 10:57:25 +02:00
|
|
|
description: 'TCG support')
|
2020-12-14 12:01:45 +01:00
|
|
|
option('tcg_interpreter', type: 'boolean', value: false,
|
2021-11-06 12:14:57 +01:00
|
|
|
description: 'TCG with bytecode interpreter (slow)')
|
2022-08-17 16:37:23 +02:00
|
|
|
option('cfi', type: 'boolean', value: false,
|
2020-12-05 00:06:14 +01:00
|
|
|
description: 'Control-Flow Integrity (CFI)')
|
2022-08-17 16:37:23 +02:00
|
|
|
option('cfi_debug', type: 'boolean', value: false,
|
2020-12-05 00:06:14 +01:00
|
|
|
description: 'Verbose errors in case of CFI violation')
|
2021-02-17 16:24:25 +01:00
|
|
|
option('multiprocess', type: 'feature', value: 'auto',
|
|
|
|
description: 'Out of process device emulation support')
|
2022-06-13 22:26:24 +02:00
|
|
|
option('vfio_user_server', type: 'feature', value: 'disabled',
|
|
|
|
description: 'vfio-user server support')
|
2021-07-15 09:53:53 +02:00
|
|
|
option('dbus_display', type: 'feature', value: 'auto',
|
|
|
|
description: '-display dbus support')
|
2021-12-21 12:38:27 +01:00
|
|
|
option('tpm', type : 'feature', value : 'auto',
|
|
|
|
description: 'TPM support')
|
2021-11-08 13:52:11 +01:00
|
|
|
|
|
|
|
# Do not enable it by default even for Mingw32, because it doesn't
|
|
|
|
# work on Wine.
|
|
|
|
option('membarrier', type: 'feature', value: 'disabled',
|
|
|
|
description: 'membarrier system call (for Linux 4.14+ or Windows')
|
|
|
|
|
2021-11-08 13:38:58 +01:00
|
|
|
option('avx2', type: 'feature', value: 'auto',
|
|
|
|
description: 'AVX2 optimizations')
|
|
|
|
option('avx512f', type: 'feature', value: 'disabled',
|
|
|
|
description: 'AVX512F optimizations')
|
2022-04-20 17:33:42 +02:00
|
|
|
option('keyring', type: 'feature', value: 'auto',
|
|
|
|
description: 'Linux keyring support')
|
2020-09-18 10:57:25 +02:00
|
|
|
|
2020-11-17 14:45:24 +01:00
|
|
|
option('attr', type : 'feature', value : 'auto',
|
|
|
|
description: 'attr/xattr support')
|
2021-06-03 11:15:26 +02:00
|
|
|
option('auth_pam', type : 'feature', value : 'auto',
|
|
|
|
description: 'PAM access control')
|
2020-11-17 13:02:17 +01:00
|
|
|
option('brlapi', type : 'feature', value : 'auto',
|
|
|
|
description: 'brlapi character device driver')
|
2020-11-17 13:07:52 +01:00
|
|
|
option('bzip2', type : 'feature', value : 'auto',
|
|
|
|
description: 'bzip2 support for DMG images')
|
2020-11-17 14:46:58 +01:00
|
|
|
option('cap_ng', type : 'feature', value : 'auto',
|
|
|
|
description: 'cap_ng support')
|
blkio: add libblkio block driver
libblkio (https://gitlab.com/libblkio/libblkio/) is a library for
high-performance disk I/O. It currently supports io_uring,
virtio-blk-vhost-user, and virtio-blk-vhost-vdpa with additional drivers
under development.
One of the reasons for developing libblkio is that other applications
besides QEMU can use it. This will be particularly useful for
virtio-blk-vhost-user which applications may wish to use for connecting
to qemu-storage-daemon.
libblkio also gives us an opportunity to develop in Rust behind a C API
that is easy to consume from QEMU.
This commit adds io_uring, nvme-io_uring, virtio-blk-vhost-user, and
virtio-blk-vhost-vdpa BlockDrivers to QEMU using libblkio. It will be
easy to add other libblkio drivers since they will share the majority of
code.
For now I/O buffers are copied through bounce buffers if the libblkio
driver requires it. Later commits add an optimization for
pre-registering guest RAM to avoid bounce buffers.
The syntax is:
--blockdev io_uring,node-name=drive0,filename=test.img,readonly=on|off,cache.direct=on|off
--blockdev nvme-io_uring,node-name=drive0,filename=/dev/ng0n1,readonly=on|off,cache.direct=on
--blockdev virtio-blk-vhost-vdpa,node-name=drive0,path=/dev/vdpa...,readonly=on|off,cache.direct=on
--blockdev virtio-blk-vhost-user,node-name=drive0,path=vhost-user-blk.sock,readonly=on|off,cache.direct=on
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Message-id: 20221013185908.1297568-3-stefanha@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2022-10-13 20:58:57 +02:00
|
|
|
option('blkio', type : 'feature', value : 'auto',
|
|
|
|
description: 'libblkio block device driver')
|
2021-05-14 13:48:32 +02:00
|
|
|
option('bpf', type : 'feature', value : 'auto',
|
|
|
|
description: 'eBPF support')
|
2020-09-01 17:28:59 +02:00
|
|
|
option('cocoa', type : 'feature', value : 'auto',
|
|
|
|
description: 'Cocoa user interface (macOS only)')
|
2020-11-17 12:43:15 +01:00
|
|
|
option('curl', type : 'feature', value : 'auto',
|
|
|
|
description: 'CURL block device driver')
|
2022-04-20 17:33:44 +02:00
|
|
|
option('gio', type : 'feature', value : 'auto',
|
|
|
|
description: 'use libgio for D-Bus support')
|
2020-11-17 13:01:26 +01:00
|
|
|
option('glusterfs', type : 'feature', value : 'auto',
|
|
|
|
description: 'Glusterfs block device driver')
|
2020-11-17 13:11:25 +01:00
|
|
|
option('libiscsi', type : 'feature', value : 'auto',
|
|
|
|
description: 'libiscsi userspace initiator')
|
2020-11-17 13:11:25 +01:00
|
|
|
option('libnfs', type : 'feature', value : 'auto',
|
|
|
|
description: 'libnfs block device driver')
|
2020-09-16 18:07:29 +02:00
|
|
|
option('mpath', type : 'feature', value : 'auto',
|
|
|
|
description: 'Multipath persistent reservation passthrough')
|
2021-12-21 12:38:27 +01:00
|
|
|
option('numa', type : 'feature', value : 'auto',
|
|
|
|
description: 'libnuma support')
|
2020-10-13 01:43:48 +02:00
|
|
|
option('iconv', type : 'feature', value : 'auto',
|
|
|
|
description: 'Font glyph conversion support')
|
|
|
|
option('curses', type : 'feature', value : 'auto',
|
|
|
|
description: 'curses UI')
|
2021-06-03 11:15:26 +02:00
|
|
|
option('gnutls', type : 'feature', value : 'auto',
|
|
|
|
description: 'GNUTLS cryptography support')
|
|
|
|
option('nettle', type : 'feature', value : 'auto',
|
|
|
|
description: 'nettle cryptography support')
|
|
|
|
option('gcrypt', type : 'feature', value : 'auto',
|
|
|
|
description: 'libgcrypt cryptography support')
|
2021-11-08 14:02:42 +01:00
|
|
|
option('crypto_afalg', type : 'feature', value : 'disabled',
|
|
|
|
description: 'Linux AF_ALG crypto backend driver')
|
2021-06-03 11:31:35 +02:00
|
|
|
option('libdaxctl', type : 'feature', value : 'auto',
|
|
|
|
description: 'libdaxctl support')
|
2021-06-03 11:31:35 +02:00
|
|
|
option('libpmem', type : 'feature', value : 'auto',
|
|
|
|
description: 'libpmem support')
|
2021-12-09 15:48:01 +01:00
|
|
|
option('libssh', type : 'feature', value : 'auto',
|
|
|
|
description: 'ssh block device support')
|
2020-10-15 12:09:27 +02:00
|
|
|
option('libudev', type : 'feature', value : 'auto',
|
|
|
|
description: 'Use libudev to enumerate host devices')
|
2021-06-03 11:15:26 +02:00
|
|
|
option('libusb', type : 'feature', value : 'auto',
|
|
|
|
description: 'libusb support for USB passthrough')
|
2021-10-07 15:08:20 +02:00
|
|
|
option('linux_aio', type : 'feature', value : 'auto',
|
|
|
|
description: 'Linux AIO support')
|
2021-06-03 11:31:35 +02:00
|
|
|
option('linux_io_uring', type : 'feature', value : 'auto',
|
|
|
|
description: 'Linux io_uring support')
|
2020-11-17 13:35:28 +01:00
|
|
|
option('lzfse', type : 'feature', value : 'auto',
|
|
|
|
description: 'lzfse support for DMG images')
|
2020-11-17 13:11:25 +01:00
|
|
|
option('lzo', type : 'feature', value : 'auto',
|
|
|
|
description: 'lzo compression support')
|
2020-11-17 13:11:25 +01:00
|
|
|
option('rbd', type : 'feature', value : 'auto',
|
|
|
|
description: 'Ceph block device driver')
|
2022-04-20 17:33:40 +02:00
|
|
|
option('opengl', type : 'feature', value : 'auto',
|
|
|
|
description: 'OpenGL support')
|
2022-04-20 17:33:41 +02:00
|
|
|
option('rdma', type : 'feature', value : 'auto',
|
|
|
|
description: 'Enable RDMA-based migration')
|
|
|
|
option('pvrdma', type : 'feature', value : 'auto',
|
|
|
|
description: 'Enable PVRDMA support')
|
2021-01-07 14:02:29 +01:00
|
|
|
option('gtk', type : 'feature', value : 'auto',
|
|
|
|
description: 'GTK+ user interface')
|
2020-09-01 07:59:23 +02:00
|
|
|
option('sdl', type : 'feature', value : 'auto',
|
|
|
|
description: 'SDL user interface')
|
|
|
|
option('sdl_image', type : 'feature', value : 'auto',
|
|
|
|
description: 'SDL Image support for icons')
|
2020-11-17 14:22:24 +01:00
|
|
|
option('seccomp', type : 'feature', value : 'auto',
|
|
|
|
description: 'seccomp support')
|
2021-06-03 11:15:26 +02:00
|
|
|
option('smartcard', type : 'feature', value : 'auto',
|
|
|
|
description: 'CA smartcard emulation support')
|
2020-11-17 13:32:34 +01:00
|
|
|
option('snappy', type : 'feature', value : 'auto',
|
|
|
|
description: 'snappy compression support')
|
2021-10-07 15:08:23 +02:00
|
|
|
option('spice', type : 'feature', value : 'auto',
|
|
|
|
description: 'Spice server support')
|
|
|
|
option('spice_protocol', type : 'feature', value : 'auto',
|
|
|
|
description: 'Spice protocol support')
|
2020-09-01 07:59:23 +02:00
|
|
|
option('u2f', type : 'feature', value : 'auto',
|
|
|
|
description: 'U2F emulation support')
|
2022-05-19 14:38:57 +02:00
|
|
|
option('canokey', type : 'feature', value : 'auto',
|
|
|
|
description: 'CanoKey support')
|
2021-06-03 11:15:26 +02:00
|
|
|
option('usb_redir', type : 'feature', value : 'auto',
|
|
|
|
description: 'libusbredir support')
|
2021-10-28 20:59:08 +02:00
|
|
|
option('l2tpv3', type : 'feature', value : 'auto',
|
|
|
|
description: 'l2tpv3 network backend support')
|
2021-10-07 15:08:22 +02:00
|
|
|
option('netmap', type : 'feature', value : 'auto',
|
|
|
|
description: 'netmap network backend support')
|
2022-04-08 18:20:47 +02:00
|
|
|
option('slirp', type: 'feature', value: 'auto',
|
|
|
|
description: 'libslirp user mode network backend support')
|
2021-10-07 15:08:21 +02:00
|
|
|
option('vde', type : 'feature', value : 'auto',
|
|
|
|
description: 'vde network backend support')
|
2022-03-17 18:28:33 +01:00
|
|
|
option('vmnet', type : 'feature', value : 'auto',
|
|
|
|
description: 'vmnet.framework network backend support')
|
2021-06-03 11:31:35 +02:00
|
|
|
option('virglrenderer', type : 'feature', value : 'auto',
|
|
|
|
description: 'virgl rendering support')
|
2022-04-08 09:13:34 +02:00
|
|
|
option('png', type : 'feature', value : 'auto',
|
|
|
|
description: 'PNG support with libpng')
|
2021-09-03 10:13:55 +02:00
|
|
|
option('vnc', type : 'feature', value : 'auto',
|
2020-09-01 07:59:23 +02:00
|
|
|
description: 'VNC server')
|
|
|
|
option('vnc_jpeg', type : 'feature', value : 'auto',
|
|
|
|
description: 'JPEG lossy compression for VNC server')
|
|
|
|
option('vnc_sasl', type : 'feature', value : 'auto',
|
|
|
|
description: 'SASL authentication for VNC server')
|
2021-06-03 11:31:35 +02:00
|
|
|
option('vte', type : 'feature', value : 'auto',
|
|
|
|
description: 'vte support for the gtk UI')
|
2020-09-01 07:59:23 +02:00
|
|
|
option('xkbcommon', type : 'feature', value : 'auto',
|
|
|
|
description: 'xkbcommon support')
|
2020-11-17 13:37:39 +01:00
|
|
|
option('zstd', type : 'feature', value : 'auto',
|
|
|
|
description: 'zstd compression support')
|
2020-10-27 20:05:41 +01:00
|
|
|
option('fuse', type: 'feature', value: 'auto',
|
|
|
|
description: 'FUSE block device export')
|
2020-10-27 20:05:46 +01:00
|
|
|
option('fuse_lseek', type : 'feature', value : 'auto',
|
|
|
|
description: 'SEEK_HOLE/SEEK_DATA support for FUSE exports')
|
2020-09-13 21:19:25 +02:00
|
|
|
|
2021-10-07 15:08:14 +02:00
|
|
|
option('trace_backends', type: 'array', value: ['log'],
|
|
|
|
choices: ['dtrace', 'ftrace', 'log', 'nop', 'simple', 'syslog', 'ust'],
|
|
|
|
description: 'Set available tracing backends')
|
|
|
|
|
2021-10-07 15:06:09 +02:00
|
|
|
option('alsa', type: 'feature', value: 'auto',
|
|
|
|
description: 'ALSA sound support')
|
|
|
|
option('coreaudio', type: 'feature', value: 'auto',
|
|
|
|
description: 'CoreAudio sound support')
|
|
|
|
option('dsound', type: 'feature', value: 'auto',
|
|
|
|
description: 'DirectSound sound support')
|
|
|
|
option('jack', type: 'feature', value: 'auto',
|
|
|
|
description: 'JACK sound support')
|
|
|
|
option('oss', type: 'feature', value: 'auto',
|
|
|
|
description: 'OSS sound support')
|
|
|
|
option('pa', type: 'feature', value: 'auto',
|
|
|
|
description: 'PulseAudio sound support')
|
2022-09-07 15:23:42 +02:00
|
|
|
option('sndio', type: 'feature', value: 'auto',
|
|
|
|
description: 'sndio sound support')
|
2021-10-07 15:06:09 +02:00
|
|
|
|
2022-04-20 17:34:07 +02:00
|
|
|
option('vhost_kernel', type: 'feature', value: 'auto',
|
|
|
|
description: 'vhost kernel backend support')
|
|
|
|
option('vhost_net', type: 'feature', value: 'auto',
|
|
|
|
description: 'vhost-net kernel acceleration support')
|
|
|
|
option('vhost_user', type: 'feature', value: 'auto',
|
|
|
|
description: 'vhost-user backend support')
|
|
|
|
option('vhost_crypto', type: 'feature', value: 'auto',
|
|
|
|
description: 'vhost-user crypto backend support')
|
|
|
|
option('vhost_vdpa', type: 'feature', value: 'auto',
|
|
|
|
description: 'vhost-vdpa kernel backend support')
|
2020-11-17 14:46:21 +01:00
|
|
|
option('vhost_user_blk_server', type: 'feature', value: 'auto',
|
|
|
|
description: 'build vhost-user-blk server')
|
|
|
|
option('virtfs', type: 'feature', value: 'auto',
|
|
|
|
description: 'virtio-9p support')
|
|
|
|
option('virtiofsd', type: 'feature', value: 'auto',
|
|
|
|
description: 'build virtiofs daemon (virtiofsd)')
|
2022-05-23 10:46:08 +02:00
|
|
|
option('libvduse', type: 'feature', value: 'auto',
|
|
|
|
description: 'build VDUSE Library')
|
2022-05-23 10:46:09 +02:00
|
|
|
option('vduse_blk_export', type: 'feature', value: 'auto',
|
|
|
|
description: 'VDUSE block export support')
|
2020-11-17 14:46:21 +01:00
|
|
|
|
2022-05-16 16:58:23 +02:00
|
|
|
option('capstone', type: 'feature', value: 'auto',
|
2020-09-13 21:19:25 +02:00
|
|
|
description: 'Whether and how to find the capstone library')
|
2020-10-05 11:31:15 +02:00
|
|
|
option('fdt', type: 'combo', value: 'auto',
|
|
|
|
choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],
|
|
|
|
description: 'Whether and how to find the libfdt library')
|
2021-11-15 21:29:43 +01:00
|
|
|
|
|
|
|
option('selinux', type: 'feature', value: 'auto',
|
|
|
|
description: 'SELinux support in qemu-nbd')
|
2021-10-13 11:43:54 +02:00
|
|
|
option('live_block_migration', type: 'feature', value: 'auto',
|
|
|
|
description: 'block migration in the main migration stream')
|
|
|
|
option('replication', type: 'feature', value: 'auto',
|
|
|
|
description: 'replication support')
|
2021-10-13 11:42:25 +02:00
|
|
|
option('bochs', type: 'feature', value: 'auto',
|
|
|
|
description: 'bochs image format support')
|
|
|
|
option('cloop', type: 'feature', value: 'auto',
|
|
|
|
description: 'cloop image format support')
|
|
|
|
option('dmg', type: 'feature', value: 'auto',
|
|
|
|
description: 'dmg image format support')
|
|
|
|
option('qcow1', type: 'feature', value: 'auto',
|
|
|
|
description: 'qcow1 image format support')
|
|
|
|
option('vdi', type: 'feature', value: 'auto',
|
|
|
|
description: 'vdi image format support')
|
|
|
|
option('vvfat', type: 'feature', value: 'auto',
|
|
|
|
description: 'vvfat image format support')
|
|
|
|
option('qed', type: 'feature', value: 'auto',
|
|
|
|
description: 'qed image format support')
|
|
|
|
option('parallels', type: 'feature', value: 'auto',
|
|
|
|
description: 'parallels image format support')
|
2021-10-13 11:46:09 +02:00
|
|
|
option('block_drv_whitelist_in_tools', type: 'boolean', value: false,
|
|
|
|
description: 'use block whitelist also in tools instead of only QEMU')
|
|
|
|
option('rng_none', type: 'boolean', value: false,
|
|
|
|
description: 'dummy RNG, avoid using /dev/(u)random and getrandom()')
|
2021-10-13 11:52:03 +02:00
|
|
|
option('coroutine_pool', type: 'boolean', value: true,
|
|
|
|
description: 'coroutine freelist (better performance)')
|
2021-10-13 11:46:09 +02:00
|
|
|
option('debug_mutex', type: 'boolean', value: false,
|
|
|
|
description: 'mutex debugging support')
|
2021-10-13 11:52:03 +02:00
|
|
|
option('debug_stack_usage', type: 'boolean', value: false,
|
|
|
|
description: 'measure coroutine stack usage')
|
2021-10-13 11:46:09 +02:00
|
|
|
option('qom_cast_debug', type: 'boolean', value: false,
|
|
|
|
description: 'cast debugging support')
|
|
|
|
option('gprof', type: 'boolean', value: false,
|
|
|
|
description: 'QEMU profiling with gprof')
|
|
|
|
option('profiler', type: 'boolean', value: false,
|
|
|
|
description: 'profiler support')
|
2021-10-13 13:43:36 +02:00
|
|
|
option('slirp_smbd', type : 'feature', value : 'auto',
|
|
|
|
description: 'use smbd (at path --smbd=*) in slirp networking')
|