| Message ID | 20250813080700.5225-1-peter.hoyes@arm.com |
|---|---|
| State | New |
| Headers | show |
| Series | [walnascar] arm/classes: Fix IMAGE_POSTPROCESS_COMMAND in fvpboot | expand |
On Wed, 13 Aug 2025 09:07:00 +0100, Peter Hoyes wrote: > Since OE-core 6fd8af0d, the semicolon delimeter in bb.build_exec_func > variables is not needed. The commit silently removes any stray ';' but > failed to handle ';' when assigning to vardeps. > > In meta-arm, this has the effect of changes to FVP_* variables not being > picked up when rebuilding the image recipe since mickledore. > > [...] Applied, thanks! [1/1] arm/classes: Fix IMAGE_POSTPROCESS_COMMAND in fvpboot commit: 60c7910b410deba56d51bda038734802e67fcaf6 Best regards,
diff --git a/meta-arm/classes/fvpboot.bbclass b/meta-arm/classes/fvpboot.bbclass index 3d8536fc..7ee306c3 100644 --- a/meta-arm/classes/fvpboot.bbclass +++ b/meta-arm/classes/fvpboot.bbclass @@ -31,7 +31,7 @@ EXTRA_IMAGEDEPENDS += "${FVP_PROVIDER}" IMAGE_CLASSES += "image-artifact-names" -IMAGE_POSTPROCESS_COMMAND += "do_write_fvpboot_conf;" +IMAGE_POSTPROCESS_COMMAND += "do_write_fvpboot_conf" python do_write_fvpboot_conf() { # Note that currently this JSON file is in development and the format may # change at any point, so it should always be used with a matching runfvp.
Since OE-core 6fd8af0d, the semicolon delimeter in bb.build_exec_func variables is not needed. The commit silently removes any stray ';' but failed to handle ';' when assigning to vardeps. In meta-arm, this has the effect of changes to FVP_* variables not being picked up when rebuilding the image recipe since mickledore. This is ancient history now, so just remove the semicolon to fix the variable dependency issue when using fvpboot in meta-arm. Signed-off-by: Peter Hoyes <peter.hoyes@arm.com> --- meta-arm/classes/fvpboot.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)