mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
image.bbclass: don't emit redundant IMAGE_CMD_xxx functions
IMAGE_CMD_xxx commands are always inlined within do_image_xxx. When IMAGE_CMD_xxx is defined as a function (e.g. IMAGE_CMD_btrfs, IMAGE_CMD_cpio, etc), a redundant copy of the function will be emitted by default. Remove IMAGE_CMD_xxx 'func' flags to prevent that. (From OE-Core rev: 118c1ca4d8d62162e87caf287f96d90707ee5903) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
2c9ead480d
commit
e7d3dcbcbb
@@ -388,6 +388,10 @@ python () {
|
|||||||
bb.fatal("No IMAGE_CMD defined for IMAGE_FSTYPES entry '%s' - possibly invalid type name or missing support class" % t)
|
bb.fatal("No IMAGE_CMD defined for IMAGE_FSTYPES entry '%s' - possibly invalid type name or missing support class" % t)
|
||||||
cmds.append(localdata.expand("\tcd ${DEPLOY_DIR_IMAGE}"))
|
cmds.append(localdata.expand("\tcd ${DEPLOY_DIR_IMAGE}"))
|
||||||
|
|
||||||
|
# Since a copy of IMAGE_CMD_xxx will be inlined within do_image_xxx,
|
||||||
|
# prevent a redundant copy of IMAGE_CMD_xxx being emitted as a function.
|
||||||
|
d.delVarFlag('IMAGE_CMD_' + realt, 'func')
|
||||||
|
|
||||||
rm_tmp_images = set()
|
rm_tmp_images = set()
|
||||||
def gen_conversion_cmds(bt):
|
def gen_conversion_cmds(bt):
|
||||||
for ctype in ctypes:
|
for ctype in ctypes:
|
||||||
|
|||||||
Reference in New Issue
Block a user