From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36466) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDuQu-0002xm-Uk for qemu-devel@nongnu.org; Mon, 26 Aug 2013 06:54:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VDuQp-0007YB-3T for qemu-devel@nongnu.org; Mon, 26 Aug 2013 06:54:04 -0400 Received: from mail-qc0-x22c.google.com ([2607:f8b0:400d:c01::22c]:43059) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDuQo-0007Y4-Vl for qemu-devel@nongnu.org; Mon, 26 Aug 2013 06:53:59 -0400 Received: by mail-qc0-f172.google.com with SMTP id a1so1652351qcx.3 for ; Mon, 26 Aug 2013 03:53:58 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <521B33C1.8070005@redhat.com> Date: Mon, 26 Aug 2013 12:53:53 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1377471536-12423-1-git-send-email-akoskovacs@gmx.com> <1377471536-12423-31-git-send-email-akoskovacs@gmx.com> In-Reply-To: <1377471536-12423-31-git-send-email-akoskovacs@gmx.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH 30/47] hw/intc/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/intc/Kconfig | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) > create mode 100644 hw/intc/Kconfig > > diff --git a/hw/intc/Kconfig b/hw/intc/Kconfig > new file mode 100644 > index 0000000..c4dec79 > --- /dev/null > +++ b/hw/intc/Kconfig > @@ -0,0 +1,28 @@ > +config HEATHROW_PIC > + bool > + > +config I8259 > + bool > + > +config PL190 > + bool > + > +config APIC > + bool > + > +config ARM_GIC > + bool > + > +config ARM_GIC_KVM > + bool > + depends on KVM IIRC "KVM" is not available yet in Kconfig, so you need to leave this dependency out. > +config IOAPIC > + bool > + > +config OPENPICS > + bool > + > +config STELLARIS > + bool > + select ARM_GIC > Please make this symbol ARMV7M_NVIC, and make STELLARIS select it. Paolo