diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-04 13:59:06 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-04 20:45:41 +0100 |
commit | 174ceef844922a3e25bc955e4bb6db04009ac3e9 (patch) | |
tree | 290184c00eef763e880f164737d8995aa7d34e57 | |
parent | 34cc76ff05b0c2224f3d6f98bba847d4c5736827 (diff) | |
download | poky-174ceef844922a3e25bc955e4bb6db04009ac3e9.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.
(From OE-Core rev: 576d52cdaca047d290c3b10b26aa2244da230dbb)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/image.bbclass | 3 |
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 () { | |||
457 | # Create input image first. | 457 | # Create input image first. |
458 | gen_conversion_cmds(type) | 458 | gen_conversion_cmds(type) |
459 | localdata.setVar('type', type) | 459 | localdata.setVar('type', type) |
460 | cmd = "\t" + (localdata.getVar("CONVERSION_CMD:" + ctype) or localdata.getVar("COMPRESS_CMD:" + ctype)) | 460 | cmd = "\t" + localdata.getVar("CONVERSION_CMD:" + ctype) |
461 | if cmd not in cmds: | 461 | if cmd not in cmds: |
462 | cmds.append(cmd) | 462 | cmds.append(cmd) |
463 | vardeps.add('CONVERSION_CMD:' + ctype) | 463 | vardeps.add('CONVERSION_CMD:' + ctype) |
464 | vardeps.add('COMPRESS_CMD:' + ctype) | ||
465 | subimage = type + "." + ctype | 464 | subimage = type + "." + ctype |
466 | if subimage not in subimages: | 465 | if subimage not in subimages: |
467 | subimages.append(subimage) | 466 | subimages.append(subimage) |