diff options
author | Philippe Mathieu-Daudé | 2020-06-18 14:33:39 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-07-11 00:02:21 +0200 |
commit | 06e89e13be25ef48196cb8ff40e9aeb3bf72f86b (patch) | |
tree | 5d5fb6c5097d57881b45e52234a310b290fb355d /accel/Kconfig | |
parent | Makefile: Write MINIKCONF variables as one entry per line (diff) | |
download | qemu-06e89e13be25ef48196cb8ff40e9aeb3bf72f86b.tar.gz qemu-06e89e13be25ef48196cb8ff40e9aeb3bf72f86b.tar.xz qemu-06e89e13be25ef48196cb8ff40e9aeb3bf72f86b.zip |
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>
Diffstat (limited to 'accel/Kconfig')
-rw-r--r-- | accel/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/accel/Kconfig b/accel/Kconfig new file mode 100644 index 0000000000..c21802bb49 --- /dev/null +++ b/accel/Kconfig @@ -0,0 +1,6 @@ +config KVM + bool + +config XEN + bool + select FSDEV_9P if VIRTFS |