qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

accel/Kconfig: Extract accel selectors into their own config

Move the accel selectors from the global Kconfig.host to their
own Kconfig file.

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

authored by

Philippe Mathieu-Daudé and committed by
Paolo Bonzini
06e89e13 1e0ef873

+7 -7
-7
Kconfig.host
··· 2 2 # down to Kconfig. See also MINIKCONF_ARGS in the Makefile: 3 3 # these two need to be kept in sync. 4 4 5 - config KVM 6 - bool 7 - 8 5 config LINUX 9 6 bool 10 7 ··· 30 27 config VHOST_KERNEL 31 28 bool 32 29 select VHOST 33 - 34 - config XEN 35 - bool 36 - select FSDEV_9P if VIRTFS 37 30 38 31 config VIRTFS 39 32 bool
+1
Makefile
··· 420 420 421 421 MINIKCONF_INPUTS = $(SRC_PATH)/Kconfig.host \ 422 422 $(SRC_PATH)/backends/Kconfig \ 423 + $(SRC_PATH)/accel/Kconfig \ 423 424 $(SRC_PATH)/hw/Kconfig 424 425 MINIKCONF_DEPS = $(MINIKCONF_INPUTS) \ 425 426 $(wildcard $(SRC_PATH)/hw/*/Kconfig)
+6
accel/Kconfig
··· 1 + config KVM 2 + bool 3 + 4 + config XEN 5 + bool 6 + select FSDEV_9P if VIRTFS