Rizwan Qureshi (rizwan.qureshi@intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/18312
-gerrit
commit 970e9e0b3f0a3f202fbbf4cb8b9e89d2662603b4 Author: Rizwan Qureshi rizwan.qureshi@intel.com Date: Thu Feb 9 15:57:45 2017 +0530
soc/intel/skylake: Add config option for Kabylake
Currently there is no distinction between mainboards using Skylake or Kabylake SoC, Add a config option for Kabylake SoC to allow mainboards to explicitly select if they are using it.
Change-Id: Ie7960bd81f88a223894afe3115ddc0bc637e4be4 Signed-off-by: Rizwan Qureshi rizwan.qureshi@intel.com --- src/soc/intel/skylake/Kconfig | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/src/soc/intel/skylake/Kconfig b/src/soc/intel/skylake/Kconfig index 090fa2a..9dcafe6 100644 --- a/src/soc/intel/skylake/Kconfig +++ b/src/soc/intel/skylake/Kconfig @@ -3,6 +3,13 @@ config SOC_INTEL_SKYLAKE help Intel Skylake support
+config SOC_INTEL_KABYLAKE + bool + default n + select SOC_INTEL_SKYLAKE + help + Intel Kabylake support + if SOC_INTEL_SKYLAKE
config CPU_SPECIFIC_OPTIONS