Martin Roth (martinroth@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12663
-gerrit
commit 1ebc555f195e5c1913d24af515f3e4bf3e730061 Author: Martin Roth martinroth@google.com Date: Sun Dec 6 19:18:37 2015 -0700
soc/intel/common: Remove USE_FMAP - symbol doesn't exist
The USE_FMAP Kconfig symbol doesn't exist, so remove things that are depending on it not being enabled.
Either the use of the USE_FMAP symbol should be removed, or the symbol should be added. I'm not sure how this plays with the updates to cbfstool, but I thought I'd post this for comment and see which direction it should go.
Change-Id: I1946f5d13a762ab07744a1d9a6cb754433e6701d Signed-off-by: Martin Roth martinroth@google.com --- src/soc/intel/common/Kconfig | 7 ------- 1 file changed, 7 deletions(-)
diff --git a/src/soc/intel/common/Kconfig b/src/soc/intel/common/Kconfig index 96d2b8e..028e915 100644 --- a/src/soc/intel/common/Kconfig +++ b/src/soc/intel/common/Kconfig @@ -8,26 +8,19 @@ if SOC_INTEL_COMMON config CACHE_MRC_SETTINGS bool "Save cached MRC settings" default n - help - If CONFIG_USE_FMAP is enabled, it is assumed that a flashmap - containing an RW_MRC_CACHE entry that specifies the location and size - of the cache will be added to the image and present at runtime.
if CACHE_MRC_SETTINGS
config MRC_SETTINGS_CACHE_BASE hex - depends on !USE_FMAP default 0xfffe0000
config MRC_SETTINGS_CACHE_SIZE hex - depends on !USE_FMAP default 0x10000
config MRC_SETTINGS_PROTECT bool "Enable protection on MRC settings" - depends on !USE_FMAP default n
endif # CACHE_MRC_SETTINGS