From patchwork Tue Jan 10 17:44:36 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] Dongxiao Xu : command.py: add parseConfigurationFiles API Date: Tue, 10 Jan 2012 17:44:36 -0000 From: git@git.openembedded.org X-Patchwork-Id: 18943 Message-Id: <20120110174436.4EE501032F@opal> To: bitbake-devel@lists.openembedded.org Module: bitbake.git Branch: master Commit: 96c307b9874131ad8c7d9caea6f6dfbd09aab9d4 URL: http://git.openembedded.org/?p=bitbake.git&a=commit;h=96c307b9874131ad8c7d9caea6f6dfbd09aab9d4 Author: Dongxiao Xu Date: Fri Jan 6 17:02:23 2012 +0800 command.py: add parseConfigurationFiles API The parseConfigurationFiles API calls the related function in cooker.py to parse config files. Signed-off-by: Dongxiao Xu Signed-off-by: Richard Purdie --- lib/bb/command.py | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/lib/bb/command.py b/lib/bb/command.py index bd41f54..f236dac 100644 --- a/lib/bb/command.py +++ b/lib/bb/command.py @@ -337,3 +337,13 @@ class CommandsAsync: else: command.finishAsyncCommand() compareRevisions.needcache = True + + def parseConfigurationFiles(self, command, params): + """ + Parse the configuration files + """ + prefiles = params[0] + postfiles = params[1] + command.cooker.parseConfigurationFiles(prefiles, postfiles) + command.finishAsyncCommand() + parseConfigurationFiles.needcache = False