summaryrefslogtreecommitdiff
path: root/payloads/external
diff options
context:
space:
mode:
authorSelma BENSAID <selma.bensaid@intel.com>2019-10-25 11:36:17 -0700
committerPatrick Georgi <pgeorgi@google.com>2019-11-14 11:08:19 +0000
commit6aa81fa55e46a308e78506d6ee93a61fb569b6c6 (patch)
treee246cdd7c75d6410230541bd52fd7a73701c93ca /payloads/external
parent32e13c0b003eab6941236fc04d0299f6a0bf0ca2 (diff)
downloadcoreboot-6aa81fa55e46a308e78506d6ee93a61fb569b6c6.tar.xz
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>
Diffstat (limited to 'payloads/external')
-rw-r--r--payloads/external/Makefile.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/payloads/external/Makefile.inc b/payloads/external/Makefile.inc
index f6417fd946..b8af8c9120 100644
--- a/payloads/external/Makefile.inc
+++ b/payloads/external/Makefile.inc
@@ -29,10 +29,10 @@ endif
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