Edward O'Callaghan has submitted this change. ( https://review.coreboot.org/c/coreboot/+/60236 )
Change subject: util/futility: Ensure futility checks for flashrom as a dep ......................................................................
util/futility: Ensure futility checks for flashrom as a dep
futility actually depends on flashrom. Previously it was of the form of subprocess and now uses the libflashrom API directly. Due to the previous subprocess decoupling it was not obvious that the dependency existed however not the runtime requirement is also a strict buildtime requirement. Therefore update the Makefile accordingly.
BUG=b:203715651,b:209702505 TEST=builds
Change-Id: Id9744424f75299eb8335c1c0c2aca2808bde829d Signed-off-by: Edward O'Callaghan quasisec@google.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/60236 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Yu-Ping Wu yupingso@google.com Reviewed-by: Hsuan-ting Chen roccochen@google.com --- M util/futility/Makefile.inc 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Yu-Ping Wu: Looks good to me, approved Hsuan-ting Chen: Looks good to me, but someone else must approve
diff --git a/util/futility/Makefile.inc b/util/futility/Makefile.inc index 9890339..45627a9 100644 --- a/util/futility/Makefile.inc +++ b/util/futility/Makefile.inc @@ -11,6 +11,7 @@ CC="$(HOSTCC)" \ PKG_CONFIG="$(HOSTPKGCONFIG)" \ V=$(V) \ + USE_FLASHROM=0 \ $@
.PHONY: check-openssl-presence