diff options
author | Andrei Dinu <andrei.adrianx.dinu@intel.com> | 2013-03-28 10:23:18 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-29 10:41:24 +0000 |
commit | 6d9f418a6ee0f598008ad679c69c39e3c29a998c (patch) | |
tree | 9f9b34cb30a900cc409ae4e72f257c1d6f4ec29e /bitbake/lib/bb | |
parent | 43a3a4b5da031520421336fe734040cbe448c0fc (diff) | |
download | poky-6d9f418a6ee0f598008ad679c69c39e3c29a998c.tar.gz |
bitbake: 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.
(Bitbake rev: f2d5f4ca9ac82599c74838844f7e54e481e023d3)
Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 4650d7c551..c7c2ca6483 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -576,6 +576,7 @@ class BBCooker: | |||
576 | description = self.status.description[fn] | 576 | description = self.status.description[fn] |
577 | homepage = self.status.homepage[fn] | 577 | homepage = self.status.homepage[fn] |
578 | bugtracker = self.status.bugtracker[fn] | 578 | bugtracker = self.status.bugtracker[fn] |
579 | files_info = self.status.files_info[fn] | ||
579 | rdepends = self.status.rundeps[fn] | 580 | rdepends = self.status.rundeps[fn] |
580 | rrecs = self.status.runrecs[fn] | 581 | rrecs = self.status.runrecs[fn] |
581 | prevision = self.status.prevision[fn] | 582 | prevision = self.status.prevision[fn] |
@@ -591,6 +592,7 @@ class BBCooker: | |||
591 | depend_tree["pn"][pn]["inherits"] = inherits | 592 | depend_tree["pn"][pn]["inherits"] = inherits |
592 | depend_tree["pn"][pn]["homepage"] = homepage | 593 | depend_tree["pn"][pn]["homepage"] = homepage |
593 | depend_tree["pn"][pn]["bugtracker"] = bugtracker | 594 | depend_tree["pn"][pn]["bugtracker"] = bugtracker |
595 | depend_tree["pn"][pn]["files_info"] = files_info | ||
594 | depend_tree["pn"][pn]["revision"] = prevision | 596 | depend_tree["pn"][pn]["revision"] = prevision |
595 | 597 | ||
596 | if fnid not in seen_fnids: | 598 | if fnid not in seen_fnids: |