From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Philippe Mathieu-Daudé" <philmd@redhat.com>,
"Riku Voipio" <riku.voipio@iki.fi>,
"Laurent Vivier" <laurent@vivier.eu>,
"Aleksandar Markovic" <amarkovic@wavecomp.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Aleksandar Rikalo" <aleksandar.rikalo@rt-rk.com>,
"Alex Bennée" <alex.bennee@linaro.org>
Subject: [PATCH 06/11] accel/Kconfig: Extract accel selectors into their own config
Date: Mon, 16 Mar 2020 13:00:44 +0100 [thread overview]
Message-ID: <20200316120049.11225-7-philmd@redhat.com> (raw)
In-Reply-To: <20200316120049.11225-1-philmd@redhat.com>
Move the accel selectors from the global Kconfig.host to their
own Kconfig file.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
Makefile | 1 +
Kconfig.host | 7 -------
accel/Kconfig | 6 ++++++
3 files changed, 7 insertions(+), 7 deletions(-)
create mode 100644 accel/Kconfig
diff --git a/Makefile b/Makefile
index d83a94bc53..d1e2ec10e7 100644
--- a/Makefile
+++ b/Makefile
@@ -419,6 +419,7 @@ MINIKCONF_ARGS = \
CONFIG_PVRDMA=$(CONFIG_PVRDMA)
MINIKCONF_INPUTS = $(SRC_PATH)/Kconfig.host \
+ $(SRC_PATH)/accel/Kconfig \
$(SRC_PATH)/hw/Kconfig
MINIKCONF_DEPS = $(MINIKCONF_INPUTS) \
$(wildcard $(SRC_PATH)/hw/*/Kconfig)
diff --git a/Kconfig.host b/Kconfig.host
index 55136e037d..a6d871c399 100644
--- a/Kconfig.host
+++ b/Kconfig.host
@@ -2,9 +2,6 @@
# down to Kconfig. See also MINIKCONF_ARGS in the Makefile:
# these two need to be kept in sync.
-config KVM
- bool
-
config LINUX
bool
@@ -31,10 +28,6 @@ config VHOST_KERNEL
bool
select VHOST
-config XEN
- bool
- select FSDEV_9P if VIRTFS
-
config VIRTFS
bool
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
--
2.21.1
next prev parent reply other threads:[~2020-03-16 12:50 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-16 12:00 [PATCH 00/11] accel: Allow targets to use Kconfig, disable semihosting by default Philippe Mathieu-Daudé
2020-03-16 12:00 ` [PATCH 01/11] MAINTAINERS: Fix KVM path expansion glob Philippe Mathieu-Daudé
2020-03-16 18:30 ` Richard Henderson
2020-04-23 7:52 ` Philippe Mathieu-Daudé
2020-04-23 8:24 ` Juan Quintela
2020-03-16 12:00 ` [PATCH 02/11] MAINTAINERS: Add an 'overall' entry for accelerators Philippe Mathieu-Daudé
2020-03-16 18:30 ` Richard Henderson
2020-03-16 12:00 ` [PATCH 03/11] MAINTAINERS: Add an entry for the HAX accelerator Philippe Mathieu-Daudé
2020-03-16 12:00 ` [PATCH 04/11] MAINTAINERS: Add an entry for the HVF accelerator Philippe Mathieu-Daudé
2020-03-16 12:12 ` Roman Bolshakov
2020-03-16 12:36 ` Philippe Mathieu-Daudé
2020-03-17 23:24 ` Cameron Esfahani via
2020-03-19 13:36 ` Roman Bolshakov
2020-03-18 18:35 ` Cameron Esfahani via
2020-03-16 12:00 ` [PATCH 05/11] Makefile: Write MINIKCONF variables as one entry per line Philippe Mathieu-Daudé
2020-03-16 18:30 ` Richard Henderson
2020-03-16 12:00 ` Philippe Mathieu-Daudé [this message]
2020-03-16 18:30 ` [PATCH 06/11] accel/Kconfig: Extract accel selectors into their own config Richard Henderson
2020-03-16 12:00 ` [PATCH 07/11] accel/Kconfig: Add the TCG selector Philippe Mathieu-Daudé
2020-03-16 18:31 ` Richard Henderson
2020-03-16 12:00 ` [PATCH 08/11] target/Kconfig: Allow targets to use Kconfig Philippe Mathieu-Daudé
2020-03-16 18:33 ` Richard Henderson
2020-03-16 12:00 ` [PATCH 09/11] target/mips: Always enable CONFIG_SEMIHOSTING Philippe Mathieu-Daudé
2020-03-16 18:34 ` Richard Henderson
2020-03-18 10:31 ` Paolo Bonzini
2020-04-20 11:28 ` Philippe Mathieu-Daudé
[not found] ` <5ebee88a-4ce4-7406-a668-c64e1cc5ae6c@redhat.com>
[not found] ` <766b5fe0-148e-827c-eb67-ad798a517b1a@redhat.com>
[not found] ` <CAP+75-W0PVH+Gmo3-4qq8Of7ss=Zr4FLVUrxc+nwwdqakHy=Uw@mail.gmail.com>
[not found] ` <c246a638-946f-7bbc-43b8-aa09489bd83c@redhat.com>
[not found] ` <CAP+75-XGxAnc_xVReTXicPhUAGjq_Q4D5Dpw3yd=6ayAFjSftw@mail.gmail.com>
2020-04-23 9:26 ` Paolo Bonzini
2020-04-23 9:51 ` Paolo Bonzini
2020-03-16 12:00 ` [PATCH 10/11] target/arm: " Philippe Mathieu-Daudé
2020-03-16 18:35 ` Richard Henderson
2020-03-16 12:00 ` [PATCH 11/11] hw/semihosting: Make the feature depend of TCG, and allow to disable it Philippe Mathieu-Daudé
2020-03-16 13:49 ` Peter Maydell
2020-03-16 14:01 ` Philippe Mathieu-Daudé
2020-03-16 18:37 ` Richard Henderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200316120049.11225-7-philmd@redhat.com \
--to=philmd@redhat.com \
--cc=aleksandar.rikalo@rt-rk.com \
--cc=alex.bennee@linaro.org \
--cc=amarkovic@wavecomp.com \
--cc=laurent@vivier.eu \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=riku.voipio@iki.fi \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.