1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-01 00:59:48 +00:00

bitbake: implement command to find configuration files for a config variable

Some configuration variables (MACHINE, MACHINE-SDK and DISTRO) set which
confguration files bitbake should use.
The added command , findConfigFiles, enables a UI to query which files are
suitable values for a specified parameter.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
Joshua Lock
2011-01-04 20:28:20 +00:00
committed by Richard Purdie
parent 1b3eb0c35f
commit 3939a216a5
3 changed files with 45 additions and 0 deletions
+10
View File
@@ -359,6 +359,16 @@ class TargetsTreeGenerated(Event):
Event.__init__(self)
self._model = model
class ConfigFilesFound(Event):
"""
Event when a list of appropriate config files has been generated
"""
def __init__(self, variable, values):
Event.__init__(self)
self._variable = variable
self._values = values
class MsgBase(Event):
"""Base class for messages"""