diff options
author | 2013-11-01 15:58:29 +0000 | |
---|---|---|
committer | 2013-11-04 10:53:12 +0000 | |
commit | f6847b0cd2bca53147ff74a40ba2a913bc0f7eb0 (patch) | |
tree | 81559d7cf1db74c8790ab0ffa0ec82a83c5e4ec6 /bitbake | |
parent | 1e6e27d98d04301bcef4c9f6b71720007dbf9fab (diff) | |
download | poky-f6847b0cd2bca53147ff74a40ba2a913bc0f7eb0.tar.gz poky-f6847b0cd2bca53147ff74a40ba2a913bc0f7eb0.tar.bz2 poky-f6847b0cd2bca53147ff74a40ba2a913bc0f7eb0.zip |
bitbake: cooker: add data to the dependency tree dump
Toaster needes to record extra data that needs to
be moved at the time of the dependency tree dump.
This data includes:
* layer priorities for recording in the layer section
* the inherit list for each PN which allows to determine
the type of the PN (regular package, image, etc).
This patch adds this data to the dependency tree dump.
(Bitbake rev: 7636aba37320aaf9b044d3832ddc21af51ccd69c)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-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 ad36b34aa4..5fe2edb0df 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -511,6 +511,7 @@ class BBCooker: depend_tree["packages"] = {} depend_tree["rdepends-pkg"] = {} depend_tree["rrecs-pkg"] = {} + depend_tree["layer-priorities"] = self.recipecache.bbfile_config_priorities for task in xrange(len(rq.rqdata.runq_fnid)): taskname = rq.rqdata.runq_task[task] @@ -522,6 +523,7 @@ class BBCooker: depend_tree["pn"][pn] = {} depend_tree["pn"][pn]["filename"] = fn depend_tree["pn"][pn]["version"] = version + depend_tree["pn"][pn]["inherits"] = self.recipecache.inherits.get(fn, None) # if we have extra caches, list all attributes they bring in extra_info = [] |