diff options
author | Joshua Lock <josh@linux.intel.com> | 2011-06-30 23:02:51 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-01 17:17:35 +0100 |
commit | 9fe29fd7db125d8f1295086b003d925c255303f4 (patch) | |
tree | 1d89d674c11f264c40c460ff2360b2553b37900a /bitbake/lib/bb/command.py | |
parent | 6769269bea2983a4036a535b3e679e13126318ed (diff) | |
download | poky-9fe29fd7db125d8f1295086b003d925c255303f4.tar.gz |
command|cooker|event: add findConfigFilePath command
This takes the name of a .conf file and returns the full path to it
(Bitbake rev: 22c8600b885faf841795b872d82f68dfb644a26e)
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r-- | bitbake/lib/bb/command.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index d597d1d39b..2f37938cee 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
@@ -251,6 +251,16 @@ class CommandsAsync: | |||
251 | command.finishAsyncCommand() | 251 | command.finishAsyncCommand() |
252 | findConfigFiles.needcache = True | 252 | findConfigFiles.needcache = True |
253 | 253 | ||
254 | def findConfigFilePath(self, command, params): | ||
255 | """ | ||
256 | Find the path of the requested configuration file | ||
257 | """ | ||
258 | configfile = params[0] | ||
259 | |||
260 | command.cooker.findConfigFilePath(configfile) | ||
261 | command.finishAsyncCommand() | ||
262 | findConfigFilePath.needcache = False | ||
263 | |||
254 | def showVersions(self, command, params): | 264 | def showVersions(self, command, params): |
255 | """ | 265 | """ |
256 | Show the currently selected versions | 266 | Show the currently selected versions |