summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb
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-19 18:05:45 +0100
commit7ce27b9fce8dd9c05d98878185f46721cc2e81f3 (patch)
tree9631cfd8818b7621a8c86908c5e5f8e81d19896a /bitbake/lib/bb
parent37a2c062a5919473157e236fbb19a1eafba00f8e (diff)
downloadopenembedded-core-contrib-7ce27b9fce8dd9c05d98878185f46721cc2e81f3.tar.gz
bitbake: 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. (Bitbake rev: a3f7dc042fc7b1c308bfd248431930eb8ba50326) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r--bitbake/lib/bb/cooker.py4
-rw-r--r--bitbake/lib/bb/cookerdata.py3
2 files changed, 5 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index fb38289397..a2b0bb5d7d 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -527,9 +527,11 @@ class BBCooker:
self.handleCollections( self.data.getVar("BBFILE_COLLECTIONS", True) )
def updateConfigOpts(self, options, environment):
+ clean = True
for o in options:
+ if o in ['prefile', 'postfile']:
+ clean = False
setattr(self.configuration, o, options[o])
- clean = True
for k in bb.utils.approved_variables():
if k in environment and k not in self.configuration.env:
logger.debug(1, "Updating environment variable %s to %s" % (k, environment[k]))
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py
index 57fc6bb50e..b20040c0b3 100644
--- a/bitbake/lib/bb/cookerdata.py
+++ b/bitbake/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])