From ee290d7f6e541999e077bcf871cd6c7b6504f3d6 Mon Sep 17 00:00:00 2001 From: Duncan Laurie Date: Wed, 14 May 2014 14:13:42 -0700 Subject: [PATCH] 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 Change-Id: Ia48ac644a8cefb2cf9c64efaa1bd9737ddfb8b1f Signed-off-by: Duncan Laurie Reviewed-on: https://chromium-review.googlesource.com/199893 Reviewed-by: Aaron Durbin --- 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 7b1fc7382a..64a7fe015f 100644 --- a/src/soc/intel/Kconfig +++ b/src/soc/intel/Kconfig @@ -1,2 +1,3 @@ source src/soc/intel/baytrail/Kconfig +source src/soc/intel/broadwell/Kconfig source src/soc/intel/common/Kconfig diff --git a/src/soc/intel/Makefile.inc b/src/soc/intel/Makefile.inc index ad798174be..8cdcbae460 100644 --- a/src/soc/intel/Makefile.inc +++ b/src/soc/intel/Makefile.inc @@ -1 +1,2 @@ subdirs-$(CONFIG_SOC_INTEL_BAYTRAIL) += baytrail +subdirs-$(CONFIG_SOC_INTEL_BROADWELL) += broadwell