summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2023-11-18 18:39:29 +0100
committerMartin Jansa <martin.jansa@gmail.com>2024-01-31 11:07:05 +0100
commit5361bce65f44537485f2807f5668e1416fe5f08d (patch)
treeaf5bab12fadbf37635110a4de9d50e9ac06ff7d3
parent5a464ff185ff038e33619531c8d020a21b7dd0f8 (diff)
downloadopenembedded-core-contrib-5361bce65f44537485f2807f5668e1416fe5f08d.tar.gz
image.bbclass: don't append -dbg suffix twice
* now with IMAGE_LINK_NAME defined based on IMAGE_NAME we don't want to append -dbg to IMAGE_NAME and then again to IMAGE_LINK_NAME * this resulted in filename like: core-image-minimal-qemux86-64.rootfs-dbg--1.0-r0-20110405230000-dbg.tar.bz2 [YOCTO #12937] Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
-rw-r--r--meta/classes-recipe/image.bbclass2
1 files changed, 0 insertions, 2 deletions
diff --git a/meta/classes-recipe/image.bbclass b/meta/classes-recipe/image.bbclass
index 0278b8c648..cb2e439b4b 100644
--- a/meta/classes-recipe/image.bbclass
+++ b/meta/classes-recipe/image.bbclass
@@ -339,8 +339,6 @@ addtask do_image_qa_setscene
def setup_debugfs_variables(d):
d.appendVar('IMAGE_ROOTFS', '-dbg')
- if d.getVar('IMAGE_LINK_NAME'):
- d.appendVar('IMAGE_LINK_NAME', '-dbg')
d.appendVar('IMAGE_NAME','-dbg')
d.setVar('IMAGE_BUILDING_DEBUGFS', 'true')
debugfs_image_fstypes = d.getVar('IMAGE_FSTYPES_DEBUGFS')