summaryrefslogtreecommitdiffstats
path: root/lib/bb/cookerdata.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-08-17 12:12:20 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-17 14:40:56 +0100
commita3f7dc042fc7b1c308bfd248431930eb8ba50326 (patch)
tree11664425210e0341af367d279049d05f01631219 /lib/bb/cookerdata.py
parentaaf3cc024315450c1674819edf2a4e5cdf293f35 (diff)
downloadbitbake-a3f7dc042fc7b1c308bfd248431930eb8ba50326.tar.gz
cooker: ensure prefile/postfile can work in memory resident mode
The prefile/postfile options weren't working in memory resident mode because they weren't being passed through to the server, so ensure that they do get passed through and that the server is reset when the values come through. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cookerdata.py')
-rw-r--r--lib/bb/cookerdata.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py
index 57fc6bb50..b20040c0b 100644
--- a/lib/bb/cookerdata.py
+++ b/lib/bb/cookerdata.py
@@ -73,7 +73,8 @@ class ConfigParameters(object):
options = {}
for o in ["abort", "tryaltconfigs", "force", "invalidate_stamp",
"verbose", "debug", "dry_run", "dump_signatures",
- "debug_domains", "extra_assume_provided", "profile"]:
+ "debug_domains", "extra_assume_provided", "profile",
+ "prefile", "postfile"]:
options[o] = getattr(self.options, o)
ret, error = server.runCommand(["updateConfig", options, environment])