bitbake: bitbake: call the initConfiguration when reparsing

As it is implemented now, when parsing the configuration files is
needed, it also needs an initialization.
Also, implemented a function to create an extra configuration files
which can be used as postfile/prefiles when parsing.

(Bitbake rev: 5fe23c1b51da14f58f8c483f43f30b48766a0913)

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Cristiana Voicu 2013-06-20 17:21:15 +03:00 committed by Richard Purdie
parent d3027b3e9b
commit 71520c5045
2 changed files with 7 additions and 3 deletions

View File

@ -396,7 +396,7 @@ class CommandsAsync:
postfiles = params[1].split()
command.cooker.configuration.prefile = prefiles
command.cooker.configuration.postfile = postfiles
command.cooker.loadConfigurationData(tracking=True)
command.cooker.loadConfigurationData()
command.finishAsyncCommand()
parseConfigurationFiles.needcache = False

View File

@ -109,7 +109,6 @@ class BBCooker:
sys.exit("FATAL: Failed to import extra cache class '%s'." % cache_name)
self.data = None
self.initConfigurationData()
self.loadConfigurationData()
# Take a lock so only one copy of bitbake can run against a given build
@ -158,6 +157,7 @@ class BBCooker:
self.data.disableTracking()
def loadConfigurationData(self):
self.initConfigurationData()
self.databuilder.parseBaseConfiguration()
self.data = self.databuilder.data
self.data_hash = self.databuilder.data_hash
@ -245,6 +245,11 @@ class BBCooker:
loginfo = {"op":set, "file":default_file, "line":total.count("\n")}
self.data.setVar(var, val, **loginfo)
def createConfigFile(self, name):
path = os.getcwd()
confpath = os.path.join(path, "conf", name)
open(confpath, 'w').close()
def parseConfiguration(self):
# Set log file verbosity
@ -1200,7 +1205,6 @@ class BBCooker:
def reset(self):
self.state = state.initial
self.initConfigurationData()
self.loadConfigurationData()
def server_main(cooker, func, *args):