[oe-commits] [openembedded-core] 02/07: license.bbclass: do write_deploy_manifest in image postprocessing

git at git.openembedded.org git at git.openembedded.org
Tue Apr 19 13:52:16 UTC 2016


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

commit 1f35b05d60f4e84554c5ee837cb071815e12c91c
Author: Markus Lehtonen <markus.lehtonen at linux.intel.com>
AuthorDate: Tue Apr 19 14:17:04 2016 +0300

    license.bbclass: do write_deploy_manifest in image postprocessing
    
    Call write_deploy_manifest() in image postprocessing phase, instead of
    rootfs postprocessing. The reason being that not necessarily all
    do_deploy tasks are dependencies of the do_rootfs and we might miss
    something.
    
    [YOCTO #9446]
    
    Signed-off-by: Markus Lehtonen <markus.lehtonen at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/license.bbclass | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass
index 94be559..43944e6 100644
--- a/meta/classes/license.bbclass
+++ b/meta/classes/license.bbclass
@@ -650,9 +650,12 @@ SSTATETASKS += "do_populate_lic"
 do_populate_lic[sstate-inputdirs] = "${LICSSTATEDIR}"
 do_populate_lic[sstate-outputdirs] = "${LICENSE_DIRECTORY}/"
 
-ROOTFS_POSTPROCESS_COMMAND_prepend = "write_package_manifest; write_deploy_manifest; license_create_manifest; "
+ROOTFS_POSTPROCESS_COMMAND_prepend = "write_package_manifest; license_create_manifest; "
 do_rootfs[recrdeptask] += "do_populate_lic"
 
+IMAGE_POSTPROCESS_COMMAND_prepend = "write_deploy_manifest; "
+do_image[recrdeptask] += "do_populate_lic"
+
 do_populate_lic_setscene[dirs] = "${LICSSTATEDIR}/${PN}"
 do_populate_lic_setscene[cleandirs] = "${LICSSTATEDIR}"
 python do_populate_lic_setscene () {

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


More information about the Openembedded-commits mailing list