[bitbake-devel] Dongxiao Xu : command.py: add parseConfigurationFiles API

git at git.openembedded.org git at git.openembedded.org
Tue Jan 10 17:44:36 UTC 2012


Module: bitbake.git
Branch: master
Commit: 96c307b9874131ad8c7d9caea6f6dfbd09aab9d4
URL:    http://git.openembedded.org/?p=bitbake.git&a=commit;h=96c307b9874131ad8c7d9caea6f6dfbd09aab9d4

Author: Dongxiao Xu <dongxiao.xu at intel.com>
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 <dongxiao.xu at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 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





More information about the bitbake-devel mailing list