[oe-commits] [openembedded-core] 43/122: image.bbclass: let do_image depend on do_populate_lic of EXTRA_IMAGEDEPENDS

git at git.openembedded.org git at git.openembedded.org
Mon Dec 4 17:25:21 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch rocko
in repository openembedded-core.

commit 2aa357501f74163f49c62db8660b7a132b5d0d46
Author: Ming Liu <liu.ming50 at gmail.com>
AuthorDate: Tue Sep 26 14:31:16 2017 +0200

    image.bbclass: let do_image depend on do_populate_lic of EXTRA_IMAGEDEPENDS
    
    The licenses of EXTRA_IMAGEDEPENDS recipes are being referenced in
    image postcommand write_deploy_manifest, but a dependency is missing
    between do_image and do_populate_lic of EXTRA_IMAGEDEPENDS recipes,
    this leads some license files not present when write_deploy_manifest
    runs, hence will cause build errors.
    
    Fixed by letting do_image depend on do_populate_lic of
    EXTRA_IMAGEDEPENDS recipes.
    
    Signed-off-by: Ming Liu <liu.ming50 at gmail.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Armin Kuster <akuster at mvista.com>
---
 meta/classes/image.bbclass | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 20240ba..d93de02 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -145,14 +145,18 @@ IMAGE_TYPE_wic = "image_types_wic"
 inherit ${IMAGE_TYPE_wic}
 
 python () {
+    def extraimage_getdepends(task):
+        deps = ""
+        for dep in (d.getVar('EXTRA_IMAGEDEPENDS') or "").split():
+            deps += " %s:%s" % (dep, task)
+        return deps
+
+    d.appendVarFlag('do_image', 'depends', extraimage_getdepends('do_populate_lic'))
+    d.appendVarFlag('do_image_complete', 'depends', extraimage_getdepends('do_populate_sysroot'))
+
     deps = " " + imagetypes_getdepends(d)
     d.appendVarFlag('do_rootfs', 'depends', deps)
 
-    deps = ""
-    for dep in (d.getVar('EXTRA_IMAGEDEPENDS') or "").split():
-        deps += " %s:do_populate_sysroot" % dep
-    d.appendVarFlag('do_image_complete', 'depends', deps)
-
     #process IMAGE_FEATURES, we must do this before runtime_mapping_rename
     #Check for replaces image features
     features = set(oe.data.typed_value('IMAGE_FEATURES', d))

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list