diff options
author | Hannah Williams <hannah.williams@intel.com> | 2017-11-01 11:01:20 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-11-04 00:38:25 +0000 |
commit | 96939ae694dc2b294ca04129c6ec88ef3f5d8809 (patch) | |
tree | 1bf0d148b0cb1ad6a029783e4579ecf009c20d69 | |
parent | b1aa6114b1b824ba73f4ab023b03507041281fdb (diff) | |
download | coreboot-96939ae694dc2b294ca04129c6ec88ef3f5d8809.tar.xz |
soc/intel/apollolake: Fix nhlt blobs path for GLK
Change-Id: Iabea32654918575c952857145ee6edb165899baf
Signed-off-by: Hannah Williams <hannah.williams@intel.com>
Reviewed-on: https://review.coreboot.org/22277
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Sathyanarayana Nujella <sathyanarayana.nujella@intel.com>
Reviewed-by: Furquan Shaikh <furquan@google.com>
-rw-r--r-- | src/soc/intel/apollolake/Makefile.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/intel/apollolake/Makefile.inc b/src/soc/intel/apollolake/Makefile.inc index de270006cd..c295e36e5e 100644 --- a/src/soc/intel/apollolake/Makefile.inc +++ b/src/soc/intel/apollolake/Makefile.inc @@ -130,7 +130,11 @@ files_added:: $(IFWITOOL) endif # DSP firmware settings files. +ifeq ($(CONFIG_SOC_INTEL_GLK),y) +NHLT_BLOB_PATH = 3rdparty/blobs/soc/intel/glk/nhlt-blobs +else NHLT_BLOB_PATH = 3rdparty/blobs/soc/intel/apollolake/nhlt-blobs +endif DMIC_1CH_48KHZ_16B = dmic-1ch-48khz-16b.bin DMIC_2CH_48KHZ_16B = dmic-2ch-48khz-16b.bin DMIC_4CH_48KHZ_16B = dmic-4ch-48khz-16b.bin |