aboutsummaryrefslogtreecommitdiff
path: root/src/Kconfig
diff options
context:
space:
mode:
authorDavid Hendricks <dhendrix@chromium.org>2012-11-28 20:16:28 -0800
committerDavid Hendricks <dhendrix@chromium.org>2012-11-30 00:03:37 +0100
commit5367e47ef1d53cd2effafc0b4832af15bdc8fd21 (patch)
tree2366aeaf268cbd7c32fcdbf0af52a13da2edef9c /src/Kconfig
parentf2e13b0b198455b83d2162a27704ad7a61eca286 (diff)
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 <hungte@chromium.org> Signed-off-by: David Hendricks <dhendrix@chromium.org> Reviewed-on: http://review.coreboot.org/1939 Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/Kconfig')
-rw-r--r--src/Kconfig8
1 files changed, 8 insertions, 0 deletions
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"