From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44819) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPW72-0000sy-QA for qemu-devel@nongnu.org; Fri, 27 Sep 2013 07:21:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VPW6w-0008W8-SE for qemu-devel@nongnu.org; Fri, 27 Sep 2013 07:21:32 -0400 Received: from mail-qa0-x22b.google.com ([2607:f8b0:400d:c00::22b]:48238) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPW6w-0008W0-Nm for qemu-devel@nongnu.org; Fri, 27 Sep 2013 07:21:26 -0400 Received: by mail-qa0-f43.google.com with SMTP id k15so372419qaq.2 for ; Fri, 27 Sep 2013 04:21:26 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <52456A45.50600@redhat.com> Date: Fri, 27 Sep 2013 13:21:41 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1380249092-4775-1-git-send-email-akoskovacs@gmx.com> <1380249092-4775-23-git-send-email-akoskovacs@gmx.com> <20130927111435.GI9972@stefanha-thinkpad.redhat.com> In-Reply-To: <20130927111435.GI9972@stefanha-thinkpad.redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [v2 22/71] hw/block/Kconfig: Add Kconfig file List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: =?ISO-8859-1?Q?=C1kos_Kov=E1cs?= , qemu-devel@nongnu.org Il 27/09/2013 13:14, Stefan Hajnoczi ha scritto: > On Fri, Sep 27, 2013 at 04:30:43AM +0200, Ákos Kovács wrote: >> Signed-off-by: Ákos Kovács >> --- >> hw/block/Kconfig | 31 +++++++++++++++++++++++++++++++ >> 1 file changed, 31 insertions(+) >> create mode 100644 hw/block/Kconfig >> >> diff --git a/hw/block/Kconfig b/hw/block/Kconfig >> new file mode 100644 >> index 0000000..d7a7e61 >> --- /dev/null >> +++ b/hw/block/Kconfig >> @@ -0,0 +1,31 @@ >> +config FDC >> + bool >> + select I8257 if !SUN4M >> + #depends on ISA >> + >> +config SSI_M25P80 >> + bool >> + depends on SSI >> + >> +config NAND >> + bool >> + >> +config PFLASH_CFI01 >> + bool >> + >> +config PFLASH_CFI02 >> + bool >> + >> +config ECC >> + bool >> + >> +config ONENAND >> + bool >> + >> +config PC_SYSFW >> + bool >> + #depends on ISA >> + >> +config NVME_PCI >> + bool >> + depends on PCI >> -- >> 1.8.1.2 > > Where is virtio-blk? Because of the proxy virtio-*-pci devices that are all defined in a single file, all virtio devices are currently keyed by a single CONFIG_VIRTIO symbol. It could be indeed possible to split it and use "select" dependencies, though. Paolo