Martin L Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/69837 )
Change subject: util/testing: Update ABUILD_OPTIONS with long option names ......................................................................
util/testing: Update ABUILD_OPTIONS with long option names
It's hard to tell what is what with the short option names, so use the long options here.
Signed-off-by: Martin Roth gaumless@gmail.com Change-Id: I1371e098bba1077dedfaffa56287a28656197b40 --- M util/testing/Makefile.inc 1 file changed, 16 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/37/69837/1
diff --git a/util/testing/Makefile.inc b/util/testing/Makefile.inc index ab0dff6..5952393 100644 --- a/util/testing/Makefile.inc +++ b/util/testing/Makefile.inc @@ -74,9 +74,9 @@ lint lint-stable lint-extended: util/lint/lint $@
-ABUILD_OPTIONS=-B -J -c $(CPUS) -Z -p $(JENKINS_PAYLOAD) -ABUILD_OPTIONS+=$(if $(V),-v,) -ABUILD_OPTIONS+=$(if $(JENKINS_NOCCACHE),,-y) +ABUILD_OPTIONS=--blobs --junit --cpus $(CPUS) --clean-somewhat --payloads $(JENKINS_PAYLOAD) +ABUILD_OPTIONS+=$(if $(V),--verbose,) +ABUILD_OPTIONS+=$(if $(JENKINS_NOCCACHE),,--ccache) ABUILD_OPTIONS+=$(JENKINS_ABUILD_OPT)
COREBOOT_BUILD_DIR?=coreboot-builds