Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/57885 )
Change subject: soc/amd/common: factor out FSP-related parts of common Kconfig ......................................................................
soc/amd/common: factor out FSP-related parts of common Kconfig
TEST=Timeless build for Mandolin results in identical image.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: Ib2fb6c29b9f42c00f252994ae2a40b7ff668105a Reviewed-on: https://review.coreboot.org/c/coreboot/+/57885 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Raul Rangel rrangel@chromium.org --- M src/soc/amd/common/Kconfig.common A src/soc/amd/common/fsp/Kconfig 2 files changed, 9 insertions(+), 9 deletions(-)
Approvals: build bot (Jenkins): Verified Raul Rangel: Looks good to me, approved
diff --git a/src/soc/amd/common/Kconfig.common b/src/soc/amd/common/Kconfig.common index 6711843..d6f9d01 100644 --- a/src/soc/amd/common/Kconfig.common +++ b/src/soc/amd/common/Kconfig.common @@ -6,15 +6,7 @@ if SOC_AMD_COMMON
source "src/soc/amd/common/block/*/Kconfig" +source "src/soc/amd/common/fsp/Kconfig" source "src/soc/amd/common/pi/Kconfig"
-if PLATFORM_USES_FSP2_0 - -config SOC_AMD_COMMON_FSP_DMI_TABLES - bool - -source "src/soc/amd/common/fsp/*/Kconfig" - -endif # PLATFORM_USES_FSP2_0 - endif # SOC_AMD_COMMON diff --git a/src/soc/amd/common/fsp/Kconfig b/src/soc/amd/common/fsp/Kconfig new file mode 100644 index 0000000..81fe298 --- /dev/null +++ b/src/soc/amd/common/fsp/Kconfig @@ -0,0 +1,8 @@ +if PLATFORM_USES_FSP2_0 + +config SOC_AMD_COMMON_FSP_DMI_TABLES + bool + +source "src/soc/amd/common/fsp/*/Kconfig" + +endif # PLATFORM_USES_FSP2_0