[oe-commits] [openembedded-core] 08/12: staging: Drop BB_SETSCENE_VERIFY_FUNCTION since it was replaced

git at git.openembedded.org git at git.openembedded.org
Thu Mar 23 17:23:32 UTC 2017


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 576b1142b21a280e686cfaa2fb92d4f0765e0a7c
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Mar 23 11:53:02 2017 +0000

    staging: Drop BB_SETSCENE_VERIFY_FUNCTION since it was replaced
    
    BB_SETSCENE_VERIFY_FUNCTION2 replaced BB_SETSCENE_VERIFY_FUNCTION
    and due to our minimum bitbake requirements there is no point in
    retaining the older version any more.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/staging.bbclass | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index 0752009..df77408 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -194,21 +194,6 @@ def sysroot_checkhashes2(covered, tasknames, fns, d, invalidtasks):
             problems.add(tid)
     return problems
 
-BB_SETSCENE_VERIFY_FUNCTION = "sysroot_checkhashes"
-
-def sysroot_checkhashes(covered, tasknames, fnids, fns, d, invalidtasks = None):
-    problems = set()
-    configurefnids = set()
-    if not invalidtasks:
-        invalidtasks = range(len(tasknames))
-    for task in invalidtasks:
-        if tasknames[task] == "do_configure" and task not in covered:
-            configurefnids.add(fnids[task])
-    for task in covered:
-        if tasknames[task] == "do_populate_sysroot" and fnids[task] in configurefnids:
-            problems.add(task)
-    return problems
-
 python do_populate_sysroot () {
     bb.build.exec_func("sysroot_stage_all", d)
     bb.build.exec_func("sysroot_strip", d)

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


More information about the Openembedded-commits mailing list