| Message ID | 20260819062208.680468-3-roosesweb@gmail.com |
|---|---|
| State | New |
| Headers | show |
| Series | Handle an empty IMAGE_LINK_NAME consistently | expand |
diff --git a/meta/classes/vex.bbclass b/meta/classes/vex.bbclass index b3c2aca..eee3af6 100644 --- a/meta/classes/vex.bbclass +++ b/meta/classes/vex.bbclass @@ -204,7 +204,8 @@ python vex_write_rootfs_manifest () { with open(manifest_name, "w") as f: json.dump(json_data, f, indent=2) - update_symlinks(manifest_name, link_path) + if link_name: + update_symlinks(manifest_name, link_path) bb.plain("Image VEX JSON report stored in: %s" % manifest_name) }
An empty IMAGE_LINK_NAME left a bare ".vex.json" symlink in the deploy directory. Skip the link, as image.bbclass and rootfs-postcommands do. AI-Generated: Uses Claude Opus 5 Signed-off-by: Thomas Roos <roosesweb@gmail.com> --- meta/classes/vex.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)