[PATCH 1/3] scripts: imx: fix string in further auth block

Sascha Hauer s.hauer at pengutronix.de
Mon Sep 1 00:35:29 PDT 2025


From: Matthias Zoechmann <matthias.zoechmann at ife-doors.com>

If an additional block to be authenticated is added via
'hab_do_block off+size at addr' the CST tool will fail.
It seems that an own line is expected for each authentication
block. Add a '\' and linefeed after the comma to avoid a fail of CST.

Signed-off-by: Matthias Zoechmann <matthias.zoechmann at ife-doors.com>
---
 scripts/imx/imx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/imx/imx.c b/scripts/imx/imx.c
index 26027f0f3548ce5ce60c84bf1c94d3a699a331cc..6dabaf59c159b582dfe84eff81cec039c4863b77 100644
--- a/scripts/imx/imx.c
+++ b/scripts/imx/imx.c
@@ -488,7 +488,7 @@ static int do_hab_blocks(struct config_data *data, int argc, char *argv[])
 			return -EINVAL;
 		}
 
-		ret = asprintf(&str, ", 0x%08x 0x%08x 0x%08x \"%s\"", addr, off, size, data->outfile);
+		ret = asprintf(&str, ", \\\n 0x%08x 0x%08x 0x%08x \"%s\"", addr, off, size, data->outfile);
 		if (ret < 0)
 			return -ENOMEM;
 

-- 
2.47.2




More information about the barebox mailing list