[oe-commits] [openembedded-core] 01/01: qemu-helper-native/systemtap-native: Ensure sysroots are populated with dependencies

git at git.openembedded.org git at git.openembedded.org
Fri Dec 6 11:08:53 UTC 2019


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

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

commit 8554129a3a1004104ff502948847799f301f71e1
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Dec 5 20:28:03 2019 +0000

    qemu-helper-native/systemtap-native: Ensure sysroots are populated with dependencies
    
    As Alex Kanavin found, dependencies aren't always populated, particularly
    with the hash equivalence server enabled locally:
    
    'bitbake core-image-minimal' with gtk+ disabled.
    can confirm with: $ tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -display gtk
    qemu-system-x86_64: Display 'gtk' is not available.
    Enable gtk in local.conf with: PACKAGECONFIG_append_pn-qemu-system-native = " gtk+"
    'bitbake core-image-minimal', without deleting tmp/
    $ tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -display gtk
    qemu-system-x86_64: Display 'gtk' is not available.
    
    This change ensures the dependencies are correctly handled as the full
    sysroot is always depended upon even if things come from sstate.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/cross.bbclass  | 1 +
 meta/classes/native.bbclass | 1 +
 2 files changed, 2 insertions(+)

diff --git a/meta/classes/cross.bbclass b/meta/classes/cross.bbclass
index f832561..6dcddd6 100644
--- a/meta/classes/cross.bbclass
+++ b/meta/classes/cross.bbclass
@@ -97,3 +97,4 @@ python do_addto_recipe_sysroot () {
     bb.build.exec_func("extend_recipe_sysroot", d)
 }
 addtask addto_recipe_sysroot after do_populate_sysroot
+do_addto_recipe_sysroot[deptask] = "do_populate_sysroot"
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass
index d5b6f6a..3a4f572 100644
--- a/meta/classes/native.bbclass
+++ b/meta/classes/native.bbclass
@@ -186,6 +186,7 @@ python do_addto_recipe_sysroot () {
     bb.build.exec_func("extend_recipe_sysroot", d)
 }
 addtask addto_recipe_sysroot after do_populate_sysroot
+do_addto_recipe_sysroot[deptask] = "do_populate_sysroot"
 
 inherit nopackages
 

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


More information about the Openembedded-commits mailing list