diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-03 23:20:15 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-13 12:15:21 +0000 |
commit | 483f85802a97cb9ad4d958c29458db91acc7809f (patch) | |
tree | e67948401b16ef7d75cd88857139fd2b00af26df /bitbake/lib/bb/event.py | |
parent | c2b5a617285733053f867c3fdda2179a65ccbe4c (diff) | |
download | poky-483f85802a97cb9ad4d958c29458db91acc7809f.tar.gz |
bitbake: Sync various functions with those from bitbake-dev and bitbake upstream
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
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 | ||