Marshall Dawson (marshalldawson3rd@gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/18268
-gerrit
commit 00baab4414e908faa511f2ee09ac036f8ba1baca Author: Marshall Dawson marshalldawson3rd@gmail.com Date: Wed Dec 14 15:14:51 2016 -0500
payloads/depthcharge: Change make target from unified
Coreboot and Depthcharge have drifted out of sync. There is no longer a non-unified Depthcharge so the build breaks when building on master. This patch corresponds with the Depthcharge change: https://review.coreboot.org/cgit/depthcharge.git/commit/?id=74a0739
Change-Id: I8d028b14d2eee63dfdc9d3dd63695f1c58ea7984 Signed-off-by: Marshall Dawson marshalldawson3rd@gmail.com --- payloads/external/depthcharge/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/payloads/external/depthcharge/Makefile b/payloads/external/depthcharge/Makefile index edc48f8..fb0c75b 100644 --- a/payloads/external/depthcharge/Makefile +++ b/payloads/external/depthcharge/Makefile @@ -61,7 +61,7 @@ config: $(libpayload_install_dir) checkout build: config echo " MAKE $(project_name) $(TAG-y)" cd $(project_dir) && $(MAKE) BOARD=$(BOARD) LIBPAYLOAD_DIR=$(libpayload_install_dir)/libpayload \ - VB_SOURCE=$(VBOOT_SOURCE) PATH="$(abspath ../../../build/util/cbfstool):$$PATH" depthcharge_unified + VB_SOURCE=$(VBOOT_SOURCE) PATH="$(abspath ../../../build/util/cbfstool):$$PATH" depthcharge
clean: test -d $(output_dir) && rm -rf $(output_dir) || exit 0