From 6c36f4a6aa76dbbca4f8c0623955058db34bd1e5 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Thu, 30 Jun 2011 23:02:52 -0700 Subject: 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 Signed-off-by: Richard Purdie --- bitbake/lib/bb/event.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'bitbake/lib/bb/event.py') diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 7c49d464dd..c7252dd330 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py @@ -390,6 +390,16 @@ class TargetsTreeGenerated(Event): Event.__init__(self) self._model = model +class FilesMatchingFound(Event): + """ + Event when a list of files matching the supplied pattern has + been generated + """ + def __init__(self, pattern, matches): + Event.__init__(self) + self._pattern = pattern + self._matches = matches + class ConfigFilesFound(Event): """ Event when a list of appropriate config files has been generated -- cgit v1.2.3-54-g00ecf