Hello Aaron Durbin, ron minnich, Julius Werner, build bot (Jenkins), Martin Roth, Furquan Shaikh, Patrick Georgi,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/33142
to look at the new patch set (#3).
Change subject: Kconfig: Create coreboot separate stage kconfigs ......................................................................
Kconfig: Create coreboot separate stage kconfigs
This patch creates seperate stage configs as below 1. ENABLE_STAGE_BOOTBLOCK 2. ENABLE_STAGE_VERSTAGE 3. ENABLE_STAGE_ROMSTAGE 4. ENABLE_STAGE_POSTCAR 5. ENABLE_STAGE_RAMSTAGE
A stage can only be enabled if soc has selected its supported architecture(example: arm, ppc, riscv, x86)
Also ensures below kconfigs are aligned with correct stage configs
1. COMPRESS_RAMSTAGE and RELOCATABLE_RAMSTAGE are now enable if CONFIG_ENABLE_STAGE_RAMSTAGE is selected. 2. COMPRESS_BOOTBLOCK will enable if CONFIG_STAGE_BOOTBLOCK is set 3. COMPRESS_PRERAM_STAGES will enable if (CONFIG_STAGE_VERSTAGE && CONFIG_VBOOT_STARTS_IN_ROMSTAGE) || CONFIG_STAGE_ROMSTAGE is selected.
Change-Id: I0f7e4174619016c5a54c28bedd52699df417a5b7 Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/Kconfig M src/arch/arm/Kconfig M src/arch/arm64/Kconfig M src/arch/arm64/armv8/Kconfig M src/arch/mips/Kconfig M src/arch/ppc64/Kconfig M src/arch/riscv/Kconfig M src/arch/x86/Kconfig 8 files changed, 73 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/42/33142/3