diff options
author | Chris Ching <chingcodes@google.com> | 2017-10-20 10:43:39 -0600 |
---|---|---|
committer | Chris Ching <chingcodes@chromium.org> | 2017-10-23 17:18:32 +0000 |
commit | aa8e5d36b1b8a5ce1574c3562416e8488ebbb8cc (patch) | |
tree | 5001c7f7d438e42e75159fcac029a6bba6b6e9b1 /src/soc/intel/Kconfig | |
parent | 5da1e3156c26ddab065ea4b9d2d64513a937f51c (diff) |
soc: Add Kconfig for each soc vendor
Allows explicit ordering for vendors that share a common configuration
that must be sourced last.
The issue is that chips in soc/{amd,intel}/[ab].* will be able to
override defaults set in this file, but Kconfig files that get sourced
later (soc/amd/[d-z].*) will NOT be able to override these defaults.
Note: intel and amd soc chips now need to be added manually to the new
Kconfig file
BUG=b:62235314
TEST=make lint-stable
Change-Id: Ida82ef184712e092aec1381a47aa1b54b74ed6b6
Signed-off-by: Chris Ching <chingcodes@google.com>
Reviewed-on: https://review.coreboot.org/22123
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/Kconfig')
-rw-r--r-- | src/soc/intel/Kconfig | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/soc/intel/Kconfig b/src/soc/intel/Kconfig new file mode 100644 index 0000000000..72ad3e0bd5 --- /dev/null +++ b/src/soc/intel/Kconfig @@ -0,0 +1,15 @@ +# 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/fsp_baytrail/Kconfig" +source "src/soc/intel/fsp_broadwell_de/Kconfig" +source "src/soc/intel/quark/Kconfig" +source "src/soc/intel/sch/Kconfig" +source "src/soc/intel/skylake/Kconfig" + +# Load common config +source "src/soc/intel/common/Kconfig" |