summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Dinu <andrei.adrianx.dinu@intel.com>2013-03-28 10:23:18 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-28 13:49:42 +0000
commitf2d5f4ca9ac82599c74838844f7e54e481e023d3 (patch)
tree32a319cb7507b8a3e76f428ee0a1620dc60757ac
parent94e2f899457d6565442a933529dd3db261ab12f0 (diff)
downloadbitbake-f2d5f4ca9ac82599c74838844f7e54e481e023d3.tar.gz
cooker.py : added variables related to cache_extra
So that the information added to cache_extra could be accesed by hob, new variables were added in the cooker.py. Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/cooker.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 4650d7c55..c7c2ca648 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -576,6 +576,7 @@ class BBCooker:
description = self.status.description[fn]
homepage = self.status.homepage[fn]
bugtracker = self.status.bugtracker[fn]
+ files_info = self.status.files_info[fn]
rdepends = self.status.rundeps[fn]
rrecs = self.status.runrecs[fn]
prevision = self.status.prevision[fn]
@@ -591,6 +592,7 @@ class BBCooker:
depend_tree["pn"][pn]["inherits"] = inherits
depend_tree["pn"][pn]["homepage"] = homepage
depend_tree["pn"][pn]["bugtracker"] = bugtracker
+ depend_tree["pn"][pn]["files_info"] = files_info
depend_tree["pn"][pn]["revision"] = prevision
if fnid not in seen_fnids: