diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-14 14:16:44 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-20 11:52:52 +0000 |
commit | 51abd41ff6e732ee0df61f380e4de23fdec7629a (patch) | |
tree | 33a1744267543b0bbd2a2405f67f9f9d339b902c /bitbake/lib/bb/cookerdata.py | |
parent | 631229df720dc88047b702452c7ad172421cc1e4 (diff) | |
download | poky-51abd41ff6e732ee0df61f380e4de23fdec7629a.tar.gz |
bitbake: cooker: Add BB_LIMITEDDEPS support
When we're running with bitbake -b, BB_TASKDEPDATA is incorrect and limited.
We really need a way to know this from the metadata and this new variable
provides this in worker context. This means existing code can stop having
to guess.
(Bitbake rev: 05763bc886024dcce2ce6b3060fb00abf79a9402)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cookerdata.py')
-rw-r--r-- | bitbake/lib/bb/cookerdata.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py index d9eab562cf..53f458786f 100644 --- a/bitbake/lib/bb/cookerdata.py +++ b/bitbake/lib/bb/cookerdata.py | |||
@@ -147,6 +147,7 @@ class CookerConfiguration(object): | |||
147 | self.interface = [] | 147 | self.interface = [] |
148 | self.writeeventlog = False | 148 | self.writeeventlog = False |
149 | self.server_only = False | 149 | self.server_only = False |
150 | self.limited_deps = False | ||
150 | 151 | ||
151 | self.env = {} | 152 | self.env = {} |
152 | 153 | ||