diff options
Diffstat (limited to 'bitbake/lib/bb/event.py')
| -rw-r--r-- | bitbake/lib/bb/event.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 10eae5fde8..e2050431ec 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
| @@ -601,8 +601,11 @@ class MetadataEvent(Event): | |||
| 601 | 601 | ||
| 602 | class SanityCheck(Event): | 602 | class SanityCheck(Event): |
| 603 | """ | 603 | """ |
| 604 | Event to issue sanity check | 604 | Event to runs sanity checks, either raise errors or generate events as return status. |
| 605 | """ | 605 | """ |
| 606 | def __init__(self, generateevents = True): | ||
| 607 | Event.__init__(self) | ||
| 608 | self.generateevents = generateevents | ||
| 606 | 609 | ||
| 607 | class SanityCheckPassed(Event): | 610 | class SanityCheckPassed(Event): |
| 608 | """ | 611 | """ |
| @@ -620,8 +623,11 @@ class SanityCheckFailed(Event): | |||
| 620 | 623 | ||
| 621 | class NetworkTest(Event): | 624 | class NetworkTest(Event): |
| 622 | """ | 625 | """ |
| 623 | Event to start network test | 626 | Event to run network connectivity tests, either raise errors or generate events as return status. |
| 624 | """ | 627 | """ |
| 628 | def __init__(self, generateevents = True): | ||
| 629 | Event.__init__(self) | ||
| 630 | self.generateevents = generateevents | ||
| 625 | 631 | ||
| 626 | class NetworkTestPassed(Event): | 632 | class NetworkTestPassed(Event): |
| 627 | """ | 633 | """ |
