Edward O'Callaghan (eocallaghan@alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7243
-gerrit
commit 8cee14521e4b6d77bb5637805fd6dd2b9f614449 Author: Edward O'Callaghan eocallaghan@alterapraxis.com Date: Wed Oct 29 13:40:29 2014 +1100
Makefile.inc: abuild -B should clone nvidia-cbootimage also
Also let us have control over blob clones on the llvm buildbot. abuild does too much already..
Change-Id: I1d1c986f9d1c4dd8db687d746dbdeb510679141a Signed-off-by: Edward O'Callaghan eocallaghan@alterapraxis.com --- Makefile.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc index daf4cf4..9783a38 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -124,7 +124,9 @@ CFLAGS_ramstage += -fprofile-arcs -ftest-coverage endif
ifeq ($(CONFIG_USE_BLOBS),y) -forgetthis:=$(shell git submodule update --init --checkout 3rdparty) +ifneq ($(CONFIG_COMPILER_LLVM_CLANG),y) +forgetthis:=$(shell git submodule update --init --checkout) +endif endif
CPPFLAGS_bootblock += -D__BOOT_BLOCK__ -D__PRE_RAM__