Selma Bensaid has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36336 )
Change subject: Fix sarien depthcharge make build ......................................................................
Fix sarien depthcharge make build
CONFIG_MAINBOARD_DEPTHCHARGE is set to "" for boards not configuring it.
Signed-off-by: Selma BENSAID selma.bensaid@intel.com Change-Id: If61a1371ad8baf165b09ce045fc1a6c205c2c0ae --- M payloads/external/Makefile.inc 1 file changed, 5 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/36336/1
diff --git a/payloads/external/Makefile.inc b/payloads/external/Makefile.inc index f6417fd..d3d10f8 100644 --- a/payloads/external/Makefile.inc +++ b/payloads/external/Makefile.inc @@ -30,9 +30,11 @@ PAYLOAD_CONFIG=payloads/external/depthcharge/depthcharge/.config $(PAYLOAD_CONFIG): payloads/external/depthcharge/depthcharge/build/depthcharge.elf ifneq ($(CONFIG_MAINBOARD_DEPTHCHARGE),) - BOARD=$(CONFIG_MAINBOARD_DEPTHCHARGE) -else - BOARD=$(call ws_to_under,$(call strip_quotes,$(call tolower,$(CONFIG_MAINBOARD_PART_NUMBER)))) + ifeq ($(CONFIG_MAINBOARD_DEPTHCHARGE),"") + BOARD=$(call ws_to_under,$(call strip_quotes,$(call tolower,$(CONFIG_MAINBOARD_PART_NUMBER)))) + else + BOARD=$(CONFIG_MAINBOARD_DEPTHCHARGE) + endif endif #TODO: Figure out version endif
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/36336 )
Change subject: Fix sarien depthcharge make build ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/coreboot/+/36336/1/payloads/external/Makefile.... File payloads/external/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/36336/1/payloads/external/Makefile.... PS1, Line 32: $(CONFIG_MAINBOARD_DEPTHCHARGE) How about wrapping this in $(call strip_quotes,...)? That should also solve the issue without leaving BOARD empty if CONFIG_MAINBOARD_DEPTHCHARGE ends up, for some reason, being empty (without quotes), no?
Hello build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/36336
to look at the new patch set (#2).
Change subject: Fix sarien depthcharge make build ......................................................................
Fix sarien depthcharge make build
CONFIG_MAINBOARD_DEPTHCHARGE is set to "" for boards not configuring it.
Signed-off-by: Selma BENSAID selma.bensaid@intel.com Change-Id: If61a1371ad8baf165b09ce045fc1a6c205c2c0ae --- M payloads/external/Makefile.inc 1 file changed, 5 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/36336/2
Selma Bensaid has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/36336 )
Change subject: Fix sarien depthcharge make build ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/coreboot/+/36336/1/payloads/external/Makefile.... File payloads/external/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/36336/1/payloads/external/Makefile.... PS1, Line 32: $(CONFIG_MAINBOARD_DEPTHCHARGE)
How about wrapping this in $(call strip_quotes,... […]
Done
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/36336 )
Change subject: Fix sarien depthcharge make build ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/coreboot/+/36336/1/payloads/external/Makefile.... File payloads/external/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/36336/1/payloads/external/Makefile.... PS1, Line 32: $(CONFIG_MAINBOARD_DEPTHCHARGE)
Done
Sorry, the diff between patchset 1 and patchset 2 only seems to show an update in the commit message's header. Missed adding the change to the CL perhaps?
Hello Mathew King, Bora Guvendik, build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/36336
to look at the new patch set (#3).
Change subject: Fix sarien depthcharge make build ......................................................................
Fix sarien depthcharge make build
CONFIG_MAINBOARD_DEPTHCHARGE is set to "" for boards not configuring it.
Signed-off-by: Selma BENSAID selma.bensaid@intel.com Change-Id: If61a1371ad8baf165b09ce045fc1a6c205c2c0ae --- M payloads/external/Makefile.inc 1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/36336/3
Selma Bensaid has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/36336 )
Change subject: Fix sarien depthcharge make build ......................................................................
Patch Set 3:
(1 comment)
https://review.coreboot.org/c/coreboot/+/36336/1/payloads/external/Makefile.... File payloads/external/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/36336/1/payloads/external/Makefile.... PS1, Line 32: $(CONFIG_MAINBOARD_DEPTHCHARGE)
Sorry, the diff between patchset 1 and patchset 2 only seems to show an update in the commit message […]
Ack I'm sorry.
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/36336 )
Change subject: Fix sarien depthcharge make build ......................................................................
Patch Set 3: Code-Review+2
Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/36336 )
Change subject: Fix sarien depthcharge make build ......................................................................
Fix sarien depthcharge make build
CONFIG_MAINBOARD_DEPTHCHARGE is set to "" for boards not configuring it.
Signed-off-by: Selma BENSAID selma.bensaid@intel.com Change-Id: If61a1371ad8baf165b09ce045fc1a6c205c2c0ae Reviewed-on: https://review.coreboot.org/c/coreboot/+/36336 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Patrick Georgi pgeorgi@google.com --- M payloads/external/Makefile.inc 1 file changed, 3 insertions(+), 3 deletions(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved
diff --git a/payloads/external/Makefile.inc b/payloads/external/Makefile.inc index f6417fd..b8af8c9 100644 --- a/payloads/external/Makefile.inc +++ b/payloads/external/Makefile.inc @@ -29,10 +29,10 @@ ifeq ($(CONFIG_PAYLOAD_DEPTHCHARGE),y) PAYLOAD_CONFIG=payloads/external/depthcharge/depthcharge/.config $(PAYLOAD_CONFIG): payloads/external/depthcharge/depthcharge/build/depthcharge.elf -ifneq ($(CONFIG_MAINBOARD_DEPTHCHARGE),) - BOARD=$(CONFIG_MAINBOARD_DEPTHCHARGE) -else +ifeq ($(call strip_quotes,$(CONFIG_MAINBOARD_DEPTHCHARGE))),) BOARD=$(call ws_to_under,$(call strip_quotes,$(call tolower,$(CONFIG_MAINBOARD_PART_NUMBER)))) +else + BOARD=$(CONFIG_MAINBOARD_DEPTHCHARGE) endif #TODO: Figure out version endif