From 5367e47ef1d53cd2effafc0b4832af15bdc8fd21 Mon Sep 17 00:00:00 2001 From: David Hendricks Date: Wed, 28 Nov 2012 20:16:28 -0800 Subject: Add dummy Kconfig options for armv7 This adds a dummy config for ARMV7 for developing various follow-up patches which rely on ARCH_ARMV7. Change-Id: Id913054d916f41607d10ebc02aaf74082e14b554 Signed-off-by: Hung-Te Lin Signed-off-by: David Hendricks Reviewed-on: http://review.coreboot.org/1939 Reviewed-by: Stefan Reinauer Tested-by: build bot (Jenkins) --- src/Kconfig | 8 ++++++++ src/arch/armv7/Kconfig | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 src/arch/armv7/Kconfig (limited to 'src') diff --git a/src/Kconfig b/src/Kconfig index 188d0bd17d..6bb8135eed 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -204,12 +204,20 @@ config ARCH_X86 bool default n +config ARCH_ARMV7 + bool + default n + # Warning: The file is included whether or not the if is here. # but the if controls how the evaluation occurs. if ARCH_X86 source src/arch/x86/Kconfig endif +if ARCH_ARMV7 +source src/arch/armv7/Kconfig +endif + menu "Chipset" comment "CPU" diff --git a/src/arch/armv7/Kconfig b/src/arch/armv7/Kconfig new file mode 100644 index 0000000000..00e6549d98 --- /dev/null +++ b/src/arch/armv7/Kconfig @@ -0,0 +1,3 @@ +menu "Architecture (armv7)" + +endmenu -- cgit v1.2.3