diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2016-01-14 19:17:08 -0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-15 11:56:30 +0000 |
commit | 191c7be3a6cc52911f244323072433f6a1172bf1 (patch) | |
tree | 6ec5d22dfb03194f4da7f1f6895bd2306b3f53d7 /meta/classes | |
parent | a13fb3c193199e06bc36613eee3db7b028595015 (diff) | |
download | openembedded-core-191c7be3a6cc52911f244323072433f6a1172bf1.tar.gz openembedded-core-191c7be3a6cc52911f244323072433f6a1172bf1.tar.bz2 openembedded-core-191c7be3a6cc52911f244323072433f6a1172bf1.zip |
image.bbclass: Handle image base type dependency properly
When a base image type has an implicit dependency (from IMAGE_TYPEDEP)
this has to be taken into account. This is a regression introduced by
OE-Core:c2dab18 (image: Create separate tasks for rootfs construction).
The issue has been found when building meta-fsl-arm based images which
does not include the rootfs image type explicitly in IMAGE_FSTYPES but
instead is added, using IMAGE_TYPEDEP, for the 'sdcard.gz' image.
Reported-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 8a09db1929..96666d529f 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -337,6 +337,9 @@ python () { _add_type(dep) basedep = _image_base_type(dep) typedeps[baset].add(basedep) + + if baset != t: + _add_type(baset) for t in alltypes[:]: _add_type(t) |