diff options
Diffstat (limited to 'bitbake/lib/bb/event.py')
| -rw-r--r-- | bitbake/lib/bb/event.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 6ccd4bdc38..1462382f10 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
| @@ -358,6 +358,12 @@ class OperationProgress(Event): | |||
| 358 | class ConfigParsed(Event): | 358 | class ConfigParsed(Event): |
| 359 | """Configuration Parsing Complete""" | 359 | """Configuration Parsing Complete""" |
| 360 | 360 | ||
| 361 | class MultiConfigParsed(Event): | ||
| 362 | """Multi-Config Parsing Complete""" | ||
| 363 | def __init__(self, mcdata): | ||
| 364 | self.mcdata = mcdata | ||
| 365 | Event.__init__(self) | ||
| 366 | |||
| 361 | class RecipeEvent(Event): | 367 | class RecipeEvent(Event): |
| 362 | def __init__(self, fn): | 368 | def __init__(self, fn): |
| 363 | self.fn = fn | 369 | self.fn = fn |
