Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/55072 )
Change subject: util/cbfstool/Makefile: Check out vboot before trying to use it ......................................................................
util/cbfstool/Makefile: Check out vboot before trying to use it
Change-Id: Ie2044d73b97663f7816964c4d908a46570aafdbc Signed-off-by: Patrick Georgi pgeorgi@google.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/55072 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Idwer Vollering vidwer@gmail.com Reviewed-by: Paul Menzel paulepanter@mailbox.org Reviewed-by: Arthur Heymans arthur@aheymans.xyz --- M util/cbfstool/Makefile 1 file changed, 5 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Idwer Vollering: Looks good to me, approved Paul Menzel: Looks good to me, but someone else must approve Arthur Heymans: Looks good to me, approved
diff --git a/util/cbfstool/Makefile b/util/cbfstool/Makefile index 7ef46a7..7d7befe 100644 --- a/util/cbfstool/Makefile +++ b/util/cbfstool/Makefile @@ -75,3 +75,8 @@ endif
include Makefile.inc + +$(objutil)/cbfstool/cbfstool.o: $(VBOOT_SOURCE)/firmware/include/vb2_sha.h + +$(VBOOT_SOURCE)/firmware/include/vb2_sha.h: + cd $(VBOOT_SOURCE) && git submodule update --init .