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 <[email protected]> --- meta/classes/vex.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) } -- 2.55.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#243708): https://lists.openembedded.org/g/openembedded-core/message/243708 Mute This Topic: https://lists.openembedded.org/mt/120826002/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
