diff options
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 8 |
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" |