diff options
author | Zhenhua Luo <zhenhua.luo@nxp.com> | 2016-06-13 19:47:34 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-15 08:35:02 +0100 |
commit | 7028192246552fd9e4aa3674da9c30670fd4ec86 (patch) | |
tree | 37c9e3770087bb2088077db2f0a55d648f90aeb0 /meta/classes/image.bbclass | |
parent | 672c024e81108516647b816b0f169740c068d57b (diff) | |
download | poky-7028192246552fd9e4aa3674da9c30670fd4ec86.tar.gz |
image.bbclass: do exact match for rootfs type
Do exact match for rootfs type, instead of pattern match, to avoid
unexpected build error due to redundant rootfs type build.
E.g. when building ext2.gz.u-boot, both .gz.u-boot and .u-boot are matched,
the following build error will appear, actually .u-boot is not needed.
| mkimage: Can't open .../core-image-minimal-<machine>-<yyyymmddhhmmss>.rootfs.ext2.gz: No such file or directory
(From OE-Core rev: 46bc438374de74af76d288520c6252c9b7840767)
Signed-off-by: Zhenhua Luo <zhenhua.luo@nxp.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 65ce6bb524..2577cca733 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -404,7 +404,7 @@ python () { | |||
404 | rm_tmp_images = set() | 404 | rm_tmp_images = set() |
405 | def gen_conversion_cmds(bt): | 405 | def gen_conversion_cmds(bt): |
406 | for ctype in ctypes: | 406 | for ctype in ctypes: |
407 | if bt.endswith("." + ctype): | 407 | if bt[bt.find('.') + 1:] == ctype: |
408 | type = bt[0:-len(ctype) - 1] | 408 | type = bt[0:-len(ctype) - 1] |
409 | if type.startswith("debugfs_"): | 409 | if type.startswith("debugfs_"): |
410 | type = type[8:] | 410 | type = type[8:] |