mb/google/volteer: support variant defined spd paths
Allow variants to override the SPD_SOURCE_PATH to allow supporting different types of DDR. BUG=b:163065661 TEST="emerge-volteer coreboot" and verify all variants build. Change-Id: Id52e651848548a783d6d9f57e88f6099425b063e Signed-off-by: Nick Vaccaro <nvaccaro@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44274 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Caveh Jalali <caveh@chromium.org>
This commit is contained in:
parent
45caf972ed
commit
b0586d9911
|
@ -4,7 +4,11 @@
|
|||
ifneq ($(SPD_SOURCES),)
|
||||
SPD_BIN = $(obj)/spd.bin
|
||||
|
||||
SPD_DEPS := $(foreach f, $(SPD_SOURCES), src/soc/intel/tigerlake/spd/lp4x/$(f))
|
||||
ifeq ($(SPD_SOURCE_PATH),)
|
||||
SPD_SOURCE_PATH := src/soc/intel/tigerlake/spd/lp4x
|
||||
endif
|
||||
|
||||
SPD_DEPS := $(foreach f, $(SPD_SOURCES), $(SPD_SOURCE_PATH)/$(f))
|
||||
|
||||
# Include spd ROM data
|
||||
$(SPD_BIN): $(SPD_DEPS)
|
||||
|
|
Loading…
Reference in New Issue