diff options
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r-- | bitbake/lib/bb/event.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index c0a59e6120..9d7341f878 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
@@ -127,6 +127,13 @@ def getName(e): | |||
127 | class ConfigParsed(Event): | 127 | class ConfigParsed(Event): |
128 | """Configuration Parsing Complete""" | 128 | """Configuration Parsing Complete""" |
129 | 129 | ||
130 | class RecipeParsed(Event): | ||
131 | """ Recipe Parsing Complete """ | ||
132 | |||
133 | def __init__(self, fn, d): | ||
134 | self.fn = fn | ||
135 | Event.__init__(self, d) | ||
136 | |||
130 | class StampUpdate(Event): | 137 | class StampUpdate(Event): |
131 | """Trigger for any adjustment of the stamp files to happen""" | 138 | """Trigger for any adjustment of the stamp files to happen""" |
132 | 139 | ||