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. Change-Id: I1946f5d13a762ab07744a1d9a6cb754433e6701d Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/12663 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
66d0f11115
commit
db557477a2
|
@ -8,26 +8,19 @@ if SOC_INTEL_COMMON
|
||||||
config CACHE_MRC_SETTINGS
|
config CACHE_MRC_SETTINGS
|
||||||
bool "Save cached MRC settings"
|
bool "Save cached MRC settings"
|
||||||
default n
|
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
|
if CACHE_MRC_SETTINGS
|
||||||
|
|
||||||
config MRC_SETTINGS_CACHE_BASE
|
config MRC_SETTINGS_CACHE_BASE
|
||||||
hex
|
hex
|
||||||
depends on !USE_FMAP
|
|
||||||
default 0xfffe0000
|
default 0xfffe0000
|
||||||
|
|
||||||
config MRC_SETTINGS_CACHE_SIZE
|
config MRC_SETTINGS_CACHE_SIZE
|
||||||
hex
|
hex
|
||||||
depends on !USE_FMAP
|
|
||||||
default 0x10000
|
default 0x10000
|
||||||
|
|
||||||
config MRC_SETTINGS_PROTECT
|
config MRC_SETTINGS_PROTECT
|
||||||
bool "Enable protection on MRC settings"
|
bool "Enable protection on MRC settings"
|
||||||
depends on !USE_FMAP
|
|
||||||
default n
|
default n
|
||||||
|
|
||||||
endif # CACHE_MRC_SETTINGS
|
endif # CACHE_MRC_SETTINGS
|
||||||
|
|
Loading…
Reference in New Issue