[oe-commits] [bitbake] 02/05: runqueue: Add the taskhash to BB_TASKDEPDATA

git at git.openembedded.org git at git.openembedded.org
Wed Dec 7 12:25:46 UTC 2016


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

commit 758867e8dc74283bb1f031e158ec54cefdd5c2a6
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed Dec 7 12:04:44 2016 +0000

    runqueue: Add the taskhash to BB_TASKDEPDATA
    
    Its useful to know the task hash in code using TASKDEPDATA so add this
    data to the data structure. The recipe specific sysroots in OE
    need this data.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 3d8ae1f..f00a3ce 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -1853,7 +1853,8 @@ class RunQueueExecuteTasks(RunQueueExecute):
                 pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn]
                 deps = self.rqdata.runtaskentries[revdep].depends
                 provides = self.rqdata.dataCaches[mc].fn_provides[taskfn]
-                taskdepdata[revdep] = [pn, taskname, fn, deps, provides]
+                taskhash = self.rqdata.runtaskentries[revdep].hash
+                taskdepdata[revdep] = [pn, taskname, fn, deps, provides, taskhash]
                 for revdep2 in deps:
                     if revdep2 not in taskdepdata:
                         additional.append(revdep2)

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


More information about the Openembedded-commits mailing list