diff options
author | Furquan Shaikh <furquan@google.com> | 2014-04-22 15:16:54 -0700 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-05-03 00:25:20 +0200 |
commit | fd33781fbf709c714b9287d69dbb63a09fad097e (patch) | |
tree | de5717f99fcac1acf9045b1dda02168d978249f1 /src/cpu/Kconfig | |
parent | 2d9725e763c480f23a9e649df1424b1dc2fb3cfd (diff) | |
download | coreboot-fd33781fbf709c714b9287d69dbb63a09fad097e.tar.xz |
Move ARCH_* from board/Kconfig to cpu or soc Kconfig.
CONFIG_ARCH is a property of the cpu or soc rather than a property of the
board. Hence, move ARCH_* from every single board to respective cpu or soc
Kconfigs. Also update abuild to ignore ARCH_ from mainboards.
Change-Id: I6ec1206de5a20601c32d001a384a47f46e6ce479
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: http://review.coreboot.org/5570
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/cpu/Kconfig')
-rw-r--r-- | src/cpu/Kconfig | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig index bf5ce8e793..6fced37880 100644 --- a/src/cpu/Kconfig +++ b/src/cpu/Kconfig @@ -1,17 +1,12 @@ # Warning: This file is included whether or not the if is here. # The if controls how the evaluation occurs. # (See also src/Kconfig) -if ARCH_ARMV7 source src/cpu/allwinner/Kconfig source src/cpu/armltd/Kconfig source src/cpu/samsung/Kconfig source src/cpu/ti/Kconfig -endif # ARCH_ARM - -if ARCH_X86 - source src/cpu/amd/Kconfig source src/cpu/dmp/Kconfig source src/cpu/intel/Kconfig @@ -19,6 +14,8 @@ source src/cpu/via/Kconfig source src/cpu/qemu-x86/Kconfig source src/cpu/x86/Kconfig +if ARCH_X86 + config CACHE_AS_RAM bool default !ROMCC |