Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39530 )
Change subject: soc/intel/Kconfig: Avoid specify dedicated chipset name ......................................................................
soc/intel/Kconfig: Avoid specify dedicated chipset name
This patch ensures all IA chipsets and common Kconfig files are getting included without specifying dedicated chipset names.
TEST=Able to compile CML and TGL RVP.
Change-Id: Ic2d8a8ac1c4acfabd4ded1bfd4ff359e820e174b Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/soc/intel/Kconfig 1 file changed, 2 insertions(+), 15 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/30/39530/1
diff --git a/src/soc/intel/Kconfig b/src/soc/intel/Kconfig index 47efc4d..0f8f0af 100644 --- a/src/soc/intel/Kconfig +++ b/src/soc/intel/Kconfig @@ -1,18 +1,5 @@ -# Load all chipsets -source "src/soc/intel/apollolake/Kconfig" -source "src/soc/intel/baytrail/Kconfig" -source "src/soc/intel/braswell/Kconfig" -source "src/soc/intel/broadwell/Kconfig" -source "src/soc/intel/cannonlake/Kconfig" -source "src/soc/intel/denverton_ns/Kconfig" -source "src/soc/intel/quark/Kconfig" -source "src/soc/intel/skylake/Kconfig" -source "src/soc/intel/icelake/Kconfig" -source "src/soc/intel/tigerlake/Kconfig" -source "src/soc/intel/xeon_sp/Kconfig" - -# Load common config -source "src/soc/intel/common/Kconfig" +# Load all chipsets and common config +source "src/soc/intel/*/Kconfig"
config INTEL_HAS_TOP_SWAP bool