summaryrefslogtreecommitdiffstats
path: root/meta/classes/image.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-04 13:59:06 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-04 20:41:46 +0100
commit576d52cdaca047d290c3b10b26aa2244da230dbb (patch)
treedcce47bdea0062e5b8d5cd256cad9e266b049517 /meta/classes/image.bbclass
parent52674c4b1fdf79829095031b2e342d44fb0dc181 (diff)
downloadopenembedded-core-contrib-576d52cdaca047d290c3b10b26aa2244da230dbb.tar.gz
image: Drop COMPRESS_CMD
This was replaced by CONVERSION_CMD a long time ago and is no longer referenced in core. Remove the references to it. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r--meta/classes/image.bbclass3
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index df34c7884c..d76895178f 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -457,11 +457,10 @@ python () {
# Create input image first.
gen_conversion_cmds(type)
localdata.setVar('type', type)
- cmd = "\t" + (localdata.getVar("CONVERSION_CMD:" + ctype) or localdata.getVar("COMPRESS_CMD:" + ctype))
+ cmd = "\t" + localdata.getVar("CONVERSION_CMD:" + ctype)
if cmd not in cmds:
cmds.append(cmd)
vardeps.add('CONVERSION_CMD:' + ctype)
- vardeps.add('COMPRESS_CMD:' + ctype)
subimage = type + "." + ctype
if subimage not in subimages:
subimages.append(subimage)