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)
This commit is contained in:
David Hendricks 2012-11-28 20:16:28 -08:00
parent f2e13b0b19
commit 5367e47ef1
2 changed files with 11 additions and 0 deletions

View File

@ -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"

3
src/arch/armv7/Kconfig Normal file
View File

@ -0,0 +1,3 @@
menu "Architecture (armv7)"
endmenu