From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37964) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDuZe-0007rD-2g for qemu-devel@nongnu.org; Mon, 26 Aug 2013 07:03:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VDuZY-0001sW-8o for qemu-devel@nongnu.org; Mon, 26 Aug 2013 07:03:06 -0400 Received: from mail-qa0-x22d.google.com ([2607:f8b0:400d:c00::22d]:63880) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDuZY-0001sS-4V for qemu-devel@nongnu.org; Mon, 26 Aug 2013 07:03:00 -0400 Received: by mail-qa0-f45.google.com with SMTP id o13so2222645qaj.4 for ; Mon, 26 Aug 2013 04:02:59 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <521B35DF.6070208@redhat.com> Date: Mon, 26 Aug 2013 13:02:55 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1377471536-12423-1-git-send-email-akoskovacs@gmx.com> <1377471536-12423-38-git-send-email-akoskovacs@gmx.com> In-Reply-To: <1377471536-12423-38-git-send-email-akoskovacs@gmx.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH 37/47] hw/pci-host/Kconfig: Add Kconfig file List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?B?w4Frb3MgS292w6Fjcw==?= Cc: qemu-devel@nongnu.org Il 26/08/2013 00:58, Ákos Kovács ha scritto: > Signed-off-by: Ákos Kovács > --- > hw/pci-host/Kconfig | 36 ++++++++++++++++++++++++++++++++++++ > 1 file changed, 36 insertions(+) > create mode 100644 hw/pci-host/Kconfig > > diff --git a/hw/pci-host/Kconfig b/hw/pci-host/Kconfig > new file mode 100644 > index 0000000..12014f5 > --- /dev/null > +++ b/hw/pci-host/Kconfig > @@ -0,0 +1,36 @@ > +config PREP_PCI > + bool > + select PCI > + > +config GRACKLE_PCI > + bool > + select PCI > + > +config UNIN_PCI > + bool > + select PCI > + > +config PPCE500_PCI > + bool > + select PCI > + > +config VERSATILE_PCI > + bool > + select PCI > + > +config PCI_APB > + bool > + select PCI > + > +config FULONG > + bool > + select PCI > + > +config PCI_PIIX > + bool > + select PCI > + #select ISA Here finally we have one that should be "select ISA"! :) This is because this file actually implements both a PCI bridge (the i440FX "NorthBridge") and an ISA bridge (the PIIX3 "SouthBridge"). Paolo > +config PCI_Q35 > + bool > + select PCI >