Marc Jones (marc.jones@se-eng.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7940
-gerrit
commit 4b6c1a4a2f682d101a742bf9b6ec50286c10dff7 Author: Duncan Laurie dlaurie@chromium.org Date: Wed May 14 14:13:42 2014 -0700
broadwell: Hook into the build system
Hook the soc/intel/broadwell directory into the configuration and build system so it can be used by mainboards.
BUG=chrome-os-partner:28234 TEST=build and boot on wtm2
Original-Change-Id: Ia48ac644a8cefb2cf9c64efaa1bd9737ddfb8b1f Original-Signed-off-by: Duncan Laurie dlaurie@chromium.org Original-Reviewed-on: https://chromium-review.googlesource.com/199893 Original-Reviewed-by: Aaron Durbin adurbin@chromium.org (cherry picked from commit ee290d7f6e541999e077bcf871cd6c7b6504f3d6) Signed-off-by: Marc Jones marc.jones@se-eng.com
Change-Id: Iea5f37a839b516ac98227cc1737ce0d03f7e7e3b --- src/soc/intel/Kconfig | 1 + src/soc/intel/Makefile.inc | 1 + 2 files changed, 2 insertions(+)
diff --git a/src/soc/intel/Kconfig b/src/soc/intel/Kconfig index d8a5011..808f6b8 100644 --- a/src/soc/intel/Kconfig +++ b/src/soc/intel/Kconfig @@ -1,3 +1,4 @@ source src/soc/intel/baytrail/Kconfig +source src/soc/intel/broadwell/Kconfig source src/soc/intel/fsp_baytrail/Kconfig source src/soc/intel/common/Kconfig diff --git a/src/soc/intel/Makefile.inc b/src/soc/intel/Makefile.inc index b2f3cde..f86d6ca 100644 --- a/src/soc/intel/Makefile.inc +++ b/src/soc/intel/Makefile.inc @@ -1,2 +1,3 @@ subdirs-$(CONFIG_SOC_INTEL_BAYTRAIL) += baytrail +subdirs-$(CONFIG_SOC_INTEL_BROADWELL) += broadwell subdirs-$(CONFIG_SOC_INTEL_FSP_BAYTRAIL) += fsp_baytrail