Signed-off-by: Ákos Kovács <akoskov...@gmx.com>
---
 hw/intc/Kconfig       | 32 ++++++++++++++++++++++++++++++++
 hw/intc/Makefile.objs |  2 +-
 2 files changed, 33 insertions(+), 1 deletion(-)
 create mode 100644 hw/intc/Kconfig

diff --git a/hw/intc/Kconfig b/hw/intc/Kconfig
new file mode 100644
index 0000000..40d8ebc
--- /dev/null
+++ b/hw/intc/Kconfig
@@ -0,0 +1,32 @@
+config HEATHROW_PIC
+    bool
+
+config I8259
+    bool
+
+config PL190
+    bool
+
+config APIC
+    bool
+    select IOAPIC
+
+config ARM_GIC
+    bool
+
+config ARM_GIC_KVM
+    bool
+    depends on KVM
+
+config IOAPIC
+    bool
+
+config OPENPICS
+    bool
+
+config OPENPIC_KVM
+    bool
+
+config ARMV7M_NVIC
+    bool
+    select ARM_GIC
diff --git a/hw/intc/Makefile.objs b/hw/intc/Makefile.objs
index 2851eed..07f8302 100644
--- a/hw/intc/Makefile.objs
+++ b/hw/intc/Makefile.objs
@@ -15,7 +15,7 @@ common-obj-$(CONFIG_OPENPIC) += openpic.o
 
 obj-$(CONFIG_APIC) += apic.o apic_common.o
 obj-$(CONFIG_ARM_GIC_KVM) += arm_gic_kvm.o
-obj-$(CONFIG_STELLARIS) += armv7m_nvic.o
+obj-$(CONFIG_ARMV7M_NVIC) += armv7m_nvic.o
 obj-$(CONFIG_EXYNOS4) += exynos4210_gic.o exynos4210_combiner.o
 obj-$(CONFIG_GRLIB) += grlib_irqmp.o
 obj-$(CONFIG_IOAPIC) += ioapic.o
-- 
1.8.1.2


Reply via email to