diff options
author | Marshall Dawson <marshalldawson3rd@gmail.com> | 2016-12-22 20:25:29 -0500 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-02-01 21:14:29 +0100 |
commit | fc18507134bfe2cb9add3f1196832318cd8adcdc (patch) | |
tree | 273ad995e81217c28cb8b412ab3b56a7b484ee3e /payloads/external/Makefile.inc | |
parent | 9be3f5dab46dd6997dc98203022b60241cf3d1c8 (diff) | |
download | coreboot-fc18507134bfe2cb9add3f1196832318cd8adcdc.tar.xz |
payloads/depthcharge: Allow generic libpayload config
Change depthcharge to not require a board-specific config file for
libpayload. If the Kconfig option is selected, use the settings
in libpayload/configs/defconfig instead.
Change-Id: I4fd1a5915472f28e757c62f3f2415716f1fdfc71
Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-on: https://review.coreboot.org/18271
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'payloads/external/Makefile.inc')
-rw-r--r-- | payloads/external/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/payloads/external/Makefile.inc b/payloads/external/Makefile.inc index d159da9453..1c0d38ccbf 100644 --- a/payloads/external/Makefile.inc +++ b/payloads/external/Makefile.inc @@ -109,7 +109,8 @@ payloads/external/depthcharge/depthcharge/build/depthcharge.elf depthcharge: $(D DEPTHCHARGE_MASTER=$(CONFIG_DEPTHCHARGE_MASTER) \ DEPTHCHARGE_STABLE=$(CONFIG_DEPTHCHARGE_STABLE) \ DEPTHCHARGE_REVISION=$(CONFIG_DEPTHCHARGE_REVISION) \ - DEPTHCHARGE_REVISION_ID=$(CONFIG_DEPTHCHARGE_REVISION_ID) + DEPTHCHARGE_REVISION_ID=$(CONFIG_DEPTHCHARGE_REVISION_ID) \ + OVERRIDE_DEFCONFIG=$(CONFIG_LP_DEFCONFIG_OVERRIDE) # FILO |