summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSubrata Banik <subrata.banik@intel.com>2020-03-14 13:19:14 +0530
committerPatrick Georgi <pgeorgi@google.com>2020-03-15 13:12:05 +0000
commit03abf8dbd16fa10a513c8d6dc831315b9cc73144 (patch)
tree381cfb62d14e57195ff3c98495052bebe0d5d99f
parent083e4ef1effd87b9cab70588186f389219e1037d (diff)
downloadcoreboot-03abf8dbd16fa10a513c8d6dc831315b9cc73144.tar.xz
soc/intel/Kconfig: Avoid specifying 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> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39530 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Aamir Bohra <aamir.bohra@intel.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/soc/intel/Kconfig14
-rw-r--r--src/soc/intel/common/Kconfig.common (renamed from src/soc/intel/common/Kconfig)0
2 files changed, 2 insertions, 12 deletions
diff --git a/src/soc/intel/Kconfig b/src/soc/intel/Kconfig
index 47efc4d18f..d5190683ae 100644
--- a/src/soc/intel/Kconfig
+++ b/src/soc/intel/Kconfig
@@ -1,18 +1,8 @@
# 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"
+source "src/soc/intel/*/Kconfig"
# Load common config
-source "src/soc/intel/common/Kconfig"
+source "src/soc/intel/common/Kconfig.common"
config INTEL_HAS_TOP_SWAP
bool
diff --git a/src/soc/intel/common/Kconfig b/src/soc/intel/common/Kconfig.common
index 44c2392abc..44c2392abc 100644
--- a/src/soc/intel/common/Kconfig
+++ b/src/soc/intel/common/Kconfig.common