]> code.ossystems Code Review - openembedded-core.git/commitdiff
image: Drop COMPRESS_CMD
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 4 Aug 2021 12:59:06 +0000 (13:59 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 4 Aug 2021 19:41:46 +0000 (20:41 +0100)
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>
meta/classes/image.bbclass

index df34c7884c5d99bbf7c2fe12e40f17c408f1d481..d76895178fbf6cfbba9fc92dc446f0b2ced4d545 100644 (file)
@@ -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)