diff options
author | David Hendricks <dhendrix@chromium.org> | 2012-11-28 20:16:28 -0800 |
---|---|---|
committer | David Hendricks <dhendrix@chromium.org> | 2012-11-30 00:03:37 +0100 |
commit | 5367e47ef1d53cd2effafc0b4832af15bdc8fd21 (patch) | |
tree | 2366aeaf268cbd7c32fcdbf0af52a13da2edef9c /src | |
parent | f2e13b0b198455b83d2162a27704ad7a61eca286 (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')
-rw-r--r-- | src/Kconfig | 8 | ||||
-rw-r--r-- | src/arch/armv7/Kconfig | 3 |
2 files changed, 11 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" 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 |