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 6328b5493c14f928b91f4392f2614f081a17682b 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 24c2e30..11953a6 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