diff options
author | Joshua Lock <josh@linux.intel.com> | 2011-06-30 23:02:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-01 17:17:35 +0100 |
commit | 6c36f4a6aa76dbbca4f8c0623955058db34bd1e5 (patch) | |
tree | 66aba473c08e3d195fc0cf8c2e86b9d06e805608 /bitbake/lib/bb/command.py | |
parent | 9fe29fd7db125d8f1295086b003d925c255303f4 (diff) | |
download | poky-6c36f4a6aa76dbbca4f8c0623955058db34bd1e5.tar.gz |
cooker|command|event: add new command findFilesMatchingInDir
This command can be used to search each BBPATH for files in the passed
directory which have a filename matching the supplied pattern.
This is implemented for use from the GUI (to determine the available
PACKAGE_CLASSES) but has been written so as to be generically useful and
reusable.
(Bitbake rev: 2a599812a57cb0b964880a6a2b7548423497ea92)
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 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 2f37938cee..a902da2ce8 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
@@ -251,6 +251,18 @@ class CommandsAsync: | |||
251 | command.finishAsyncCommand() | 251 | command.finishAsyncCommand() |
252 | findConfigFiles.needcache = True | 252 | findConfigFiles.needcache = True |
253 | 253 | ||
254 | def findFilesMatchingInDir(self, command, params): | ||
255 | """ | ||
256 | Find implementation files matching the specified pattern | ||
257 | in the requested subdirectory of a BBPATH | ||
258 | """ | ||
259 | pattern = params[0] | ||
260 | directory = params[1] | ||
261 | |||
262 | command.cooker.findFilesMatchingInDir(pattern, directory) | ||
263 | command.finishAsyncCommand() | ||
264 | findFilesMatchingInDir.needcache = True | ||
265 | |||
254 | def findConfigFilePath(self, command, params): | 266 | def findConfigFilePath(self, command, params): |
255 | """ | 267 | """ |
256 | Find the path of the requested configuration file | 268 | Find the path of the requested configuration file |