Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/33112
Change subject: Kconfig: Make ramstage kconfigs dependent on CONFIG_ARCH_RAMSTAGE_X86_32/64 ......................................................................
Kconfig: Make ramstage kconfigs dependent on CONFIG_ARCH_RAMSTAGE_X86_32/64
This patch ensures required ramstage configs like COMPRESS_RAMSTAGE and RELOCATABLE_RAMSTAGE are not enable if CONFIG_ARCH_RAMSTAGE_X86_32/64 is not selected.
Change-Id: I5d0c31152ffa8faf62b10a6bda12c9ad2e786d94 Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/Kconfig 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/12/33112/1
diff --git a/src/Kconfig b/src/Kconfig index d30aa99..ac7aad2 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -129,6 +129,7 @@
config COMPRESS_RAMSTAGE bool "Compress ramstage with LZMA" + depends on ARCH_RAMSTAGE_X86_32 || ARCH_RAMSTAGE_X86_64 # Default value set at the end of the file help Compress ramstage to save memory in the flash image. Note @@ -234,6 +235,7 @@
config RELOCATABLE_RAMSTAGE bool + depends on ARCH_RAMSTAGE_X86_32 || ARCH_RAMSTAGE_X86_64 default !NO_RELOCATABLE_RAMSTAGE select RELOCATABLE_MODULES help