diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-01-04 10:11:59 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-01-04 19:35:25 +0100 |
commit | 31c36137f9519380df0c92ce1a5d2949eb083b91 (patch) | |
tree | 87cad941bfdc75c71bbc983bf40f2d30d38d4157 /src/arch/armv7/Kconfig | |
parent | c4077d44297c95100cc9eb19df1ab3b16261942f (diff) |
Clean up ARMv7 architecture Kconfig
There was a misuse of bool that would cause the dcache policy to not be
set up correctly, but instead present options "y" and "n" in the Kconfig
menu.
Also, TINY_BOOTBLOCK was removed a while ago, everything is
TINY_BOOTBLOCK now. Hence remove the option.
Change-Id: I5c28ac828955c69614c7bdaf106f79db51e68723
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2101
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/arch/armv7/Kconfig')
-rw-r--r-- | src/arch/armv7/Kconfig | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/arch/armv7/Kconfig b/src/arch/armv7/Kconfig index f92911d6b7..65de2d5d1e 100644 --- a/src/arch/armv7/Kconfig +++ b/src/arch/armv7/Kconfig @@ -34,7 +34,6 @@ config BOOTBLOCK_SOURCE config UPDATE_IMAGE bool "Update existing coreboot.rom image" default n - depends on TINY_BOOTBLOCK help If this option is enabled, no new coreboot.rom file is created. Instead it is expected that there already @@ -47,9 +46,11 @@ config BOOTBLOCK_SOC_INIT # FIXME: Should cache policy be set on a per-CPU basis? # FIXME(dhendrix): Stefan sayz to make a smart decision and not prompt the user. config ARM_DCACHE_POLICY_WRITEBACK - bool y + bool + default y config ARM_DCACHE_POLICY_WRITETHROUGH - bool n + bool + default n endmenu |