diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2012-04-24 16:16:10 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-24 10:14:47 +0100 |
commit | 86abb3699aff245ab4095858ba8dbba78ab46f29 (patch) | |
tree | c80d973a078c3736d790c72e8c534932bd7168ec /bitbake | |
parent | f52d2dc8518c640d09bc9f16952dd58fc2fd9723 (diff) | |
download | poky-86abb3699aff245ab4095858ba8dbba78ab46f29.tar.gz |
event.py: Add SanityCheck and SanityCheckPassed events
(Bitbake rev: 4d7bf9d813229b78b1cd87d06f7042e7923b7db4)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/event.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index bbece583d1..f3fb5213ba 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
@@ -517,3 +517,13 @@ class PackageInfo(Event): | |||
517 | def __init__(self, pkginfolist): | 517 | def __init__(self, pkginfolist): |
518 | Event.__init__(self) | 518 | Event.__init__(self) |
519 | self._pkginfolist = pkginfolist | 519 | self._pkginfolist = pkginfolist |
520 | |||
521 | class SanityCheck(Event): | ||
522 | """ | ||
523 | Event to issue sanity check | ||
524 | """ | ||
525 | |||
526 | class SanityCheckPassed(Event): | ||
527 | """ | ||
528 | Event to indicate sanity check is passed | ||
529 | """ | ||