Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/33859
Change subject: Kconfig: Enable RAMPAYLOAD for x86 ......................................................................
Kconfig: Enable RAMPAYLOAD for x86
This patch makes CONFIG_RAMPAYLOAD default enable upon selection of HAVE_RAMPAYLOAD kconfig from mainboard for x86 platform.
Without this CL, CONFIG_RAMPAYLOAD is still disable although mainboard has selected CONFIG_HAVE_RAMPAYLOAD.
Change-Id: I40308bbf970a0dbe5f7e2086ed8a7a70c2a3a32c Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/Kconfig 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/59/33859/1
diff --git a/src/Kconfig b/src/Kconfig index 72d826f..919d257 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -290,7 +290,7 @@
config RAMPAYLOAD bool "Enable coreboot flow without executing ramstage" - default n + default y if ARCH_X86 depends on HAVE_RAMPAYLOAD help If this option is enabled, coreboot flow will skip ramstage