| Submitter | Dongxiao Xu |
|---|---|
| Date | Jan. 6, 2012, 9:02 a.m. |
| Message ID | <c2d2e963b28bddc1caecd4ef9a7f805c5ee91817.1325840050.git.dongxiao.xu@intel.com> |
| Download | mbox | patch |
| Permalink | /patch/18633/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/lib/bb/command.py b/lib/bb/command.py index 701b286..6b4a598 100644 --- a/lib/bb/command.py +++ b/lib/bb/command.py @@ -326,3 +326,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
The parseConfigurationFiles API calls the related function in cooker.py to parse config files. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> --- lib/bb/command.py | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-)