From 339658f2abb9e01ec1ff1098731f46f338113e43 Mon Sep 17 00:00:00 2001 From: Chris Fiege <cfi@pengutronix.de> Date: Mon, 10 Jun 2024 22:08:06 +0200 Subject: [PATCH] also create manifest for devices with BROKEN=1, if we have the images `make manifest` does not take the `BROKEN=1` parameter, like other build commands do. But it seems the underlying `scripts/target_lib.lua` does get this info from the environment anyway. So we can pass that info, bypassing the makefile. --- builder.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder.sh b/builder.sh index f50c917..64d97bf 100755 --- a/builder.sh +++ b/builder.sh @@ -148,7 +148,7 @@ done # build manifest # ############## echo making manifest -make manifest GLUON_AUTOUPDATER_BRANCH=$BRANCH GLUON_PRIORITY=${PRIO} GLUON_RELEASE=${RELEASENAME} +BROKEN=1 make manifest GLUON_AUTOUPDATER_BRANCH=$BRANCH GLUON_PRIORITY=${PRIO} GLUON_RELEASE=${RELEASENAME} # write the current site-commit as into-text -- GitLab