Nick Vaccaro has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/44274 )
Change subject: mb/google/volteer: support variant defined spd paths ......................................................................
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 --- M src/mainboard/google/volteer/spd/Makefile.inc 1 file changed, 5 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/74/44274/1
diff --git a/src/mainboard/google/volteer/spd/Makefile.inc b/src/mainboard/google/volteer/spd/Makefile.inc index e125994..d0cc720 100644 --- a/src/mainboard/google/volteer/spd/Makefile.inc +++ b/src/mainboard/google/volteer/spd/Makefile.inc @@ -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)
Caveh Jalali has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44274 )
Change subject: mb/google/volteer: support variant defined spd paths ......................................................................
Patch Set 1:
(2 comments)
https://review.coreboot.org/c/coreboot/+/44274/1/src/mainboard/google/voltee... File src/mainboard/google/volteer/spd/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/44274/1/src/mainboard/google/voltee... PS1, Line 8: / no need for the trailing '/'.
https://review.coreboot.org/c/coreboot/+/44274/1/src/mainboard/google/voltee... PS1, Line 11: $$ you shouldn't need second expansion here.
Hello build bot (Jenkins), Furquan Shaikh, Patrick Georgi, Martin Roth, Caveh Jalali, Duncan Laurie, Mice Lin,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/44274
to look at the new patch set (#2).
Change subject: mb/google/volteer: support variant defined spd paths ......................................................................
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 --- M src/mainboard/google/volteer/spd/Makefile.inc 1 file changed, 5 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/74/44274/2
Nick Vaccaro has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44274 )
Change subject: mb/google/volteer: support variant defined spd paths ......................................................................
Patch Set 2:
(2 comments)
https://review.coreboot.org/c/coreboot/+/44274/1/src/mainboard/google/voltee... File src/mainboard/google/volteer/spd/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/44274/1/src/mainboard/google/voltee... PS1, Line 8: /
no need for the trailing '/'.
Done
https://review.coreboot.org/c/coreboot/+/44274/1/src/mainboard/google/voltee... PS1, Line 11: $$
you shouldn't need second expansion here.
Done
Caveh Jalali has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44274 )
Change subject: mb/google/volteer: support variant defined spd paths ......................................................................
Patch Set 2: Code-Review+2
Nick Vaccaro has submitted this change. ( https://review.coreboot.org/c/coreboot/+/44274 )
Change subject: mb/google/volteer: support variant defined spd paths ......................................................................
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 --- M src/mainboard/google/volteer/spd/Makefile.inc 1 file changed, 5 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Caveh Jalali: Looks good to me, approved
diff --git a/src/mainboard/google/volteer/spd/Makefile.inc b/src/mainboard/google/volteer/spd/Makefile.inc index e125994..1077a36 100644 --- a/src/mainboard/google/volteer/spd/Makefile.inc +++ b/src/mainboard/google/volteer/spd/Makefile.inc @@ -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)
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/44274 )
Change subject: mb/google/volteer: support variant defined spd paths ......................................................................
Patch Set 3:
(1 comment)
https://review.coreboot.org/c/coreboot/+/44274/2//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/44274/2//COMMIT_MSG@7 PS2, Line 7: spd SPD