depthcharge: add CONFIG_MAINBOARD_DEPTHCHARGE
CONFIG_MAINBOARD_DEPTHCHARGE is used to override the Board config for depthcharge which inherit from CONFIG_MAINBOARD_PART_NUMBER. This is mainly to avoid depthcharge config duplication. Signed-off-by: Selma BENSAID <selma.bensaid@intel.com> Change-Id: I6cbc93ca38ad6deeca2c2fb7770024a24233b6f8 Reviewed-on: https://review.coreboot.org/c/coreboot/+/35510 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Mathew King <mathewk@chromium.org>
This commit is contained in:
parent
0962b1fa5d
commit
b458a4f745
|
@ -29,6 +29,11 @@ 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
|
||||
BOARD=$(call ws_to_under,$(call strip_quotes,$(call tolower,$(CONFIG_MAINBOARD_PART_NUMBER))))
|
||||
endif
|
||||
#TODO: Figure out version
|
||||
endif
|
||||
|
||||
|
@ -114,7 +119,7 @@ endif
|
|||
|
||||
payloads/external/depthcharge/depthcharge/build/depthcharge.elf depthcharge: $(DOTCONFIG) $(CBFSTOOL)
|
||||
$(MAKE) -C payloads/external/depthcharge \
|
||||
BOARD=$(call ws_to_under,$(call strip_quotes,$(call tolower,$(CONFIG_MAINBOARD_PART_NUMBER)))) \
|
||||
BOARD=$(BOARD) \
|
||||
MFLAGS= MAKEFLAGS= \
|
||||
DEPTHCHARGE_MASTER=$(CONFIG_DEPTHCHARGE_MASTER) \
|
||||
DEPTHCHARGE_STABLE=$(CONFIG_DEPTHCHARGE_STABLE) \
|
||||
|
|
|
@ -35,6 +35,11 @@ config PAYLOAD_FILE
|
|||
string
|
||||
default "payloads/external/depthcharge/depthcharge/build/depthcharge.elf"
|
||||
|
||||
config MAINBOARD_DEPTHCHARGE
|
||||
string ""
|
||||
help
|
||||
Override BOARD setting for depthcharge
|
||||
|
||||
config LP_DEFCONFIG_OVERRIDE
|
||||
bool "Use default libpayload config"
|
||||
help
|
||||
|
|
Loading…
Reference in New Issue