[oe-commits] [openembedded-core] 19/26: staging: Add BB_SETSCENE_VERIFY_FUNCTION2 for bitbake runqueue changes

git at git.openembedded.org git at git.openembedded.org
Mon Jun 13 10:53:29 UTC 2016


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

commit 811205fab3065ed5a179a59f677ced995f2930f9
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sun Jun 12 23:57:53 2016 +0100

    staging: Add BB_SETSCENE_VERIFY_FUNCTION2 for bitbake runqueue changes
    
    We're about to rewrite the data structures in taskdata/runqueue in bitbake
    and we 'leaked' knowledge about those structures to this single function.
    
    Add a 'v2' function definition for use with the newer bitbake, the older
    one can remain for compatibility for a while, then be removed. The function
    is comparatively simple and rarely changes.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/staging.bbclass | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index 30f2b50..a0b09a0 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -181,6 +181,19 @@ python sysroot_cleansstate () {
 do_configure[prefuncs] += "sysroot_cleansstate"
 
 
+BB_SETSCENE_VERIFY_FUNCTION2 = "sysroot_checkhashes2"
+
+def sysroot_checkhashes2(covered, tasknames, fns, d, invalidtasks):
+    problems = set()
+    configurefns = set()
+    for tid in invalidtasks:
+        if tasknames[tid] == "do_configure" and tid not in covered:
+            configurefns.add(fns[tid])
+    for tid in covered:
+        if tasknames[tid] == "do_populate_sysroot" and fns[tid] in configurefns:
+            problems.add(tid)
+    return problems
+
 BB_SETSCENE_VERIFY_FUNCTION = "sysroot_checkhashes"
 
 def sysroot_checkhashes(covered, tasknames, fnids, fns, d, invalidtasks = None):

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


More information about the Openembedded-commits mailing list