From e914e2ac15e2f3c12952b68b685d57360c70a2de Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Thu, 14 Jan 2016 19:17:08 -0200 Subject: 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 (From OE-Core rev: 191c7be3a6cc52911f244323072433f6a1172bf1) Signed-off-by: Otavio Salvador Signed-off-by: Richard Purdie --- meta/classes/image.bbclass | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/classes/image.bbclass') 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) -- cgit 1.2.3-korg