diff options
Diffstat (limited to 'bitbake/doc/bitbake-user-manual')
-rw-r--r-- | bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml index 992f65058f..26699fc268 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml | |||
@@ -1308,8 +1308,8 @@ | |||
1308 | BitBake allows installation of event handlers within | 1308 | BitBake allows installation of event handlers within |
1309 | recipe and class files. | 1309 | recipe and class files. |
1310 | Events are triggered at certain points during operation, | 1310 | Events are triggered at certain points during operation, |
1311 | such as the beginning of operation against a given | 1311 | such as the beginning of an operation against a given recipe |
1312 | <filename>.bb</filename>, the start of a given task, | 1312 | (<filename>*.bb</filename> file), the start of a given task, |
1313 | task failure, task success, and so forth. | 1313 | task failure, task success, and so forth. |
1314 | The intent is to make it easy to do things like email | 1314 | The intent is to make it easy to do things like email |
1315 | notification on build failure. | 1315 | notification on build failure. |
@@ -1338,6 +1338,27 @@ | |||
1338 | </para> | 1338 | </para> |
1339 | 1339 | ||
1340 | <para> | 1340 | <para> |
1341 | Because you probably are only interested in a subset of events, | ||
1342 | you would likely use the <filename>[eventmask]</filename> flag | ||
1343 | for your event handler to be sure that only certain events | ||
1344 | trigger the handler. | ||
1345 | Given the previous example, suppose you only wanted the | ||
1346 | <filename>bb.build.TaskFailed</filename> event to trigger that | ||
1347 | event handler. | ||
1348 | Use the flag as follows: | ||
1349 | <literallayout class='monospaced'> | ||
1350 | addhandler myclass_eventhandler | ||
1351 | myclass_eventhandler[eventmask] = "bb.build.TaskFailed" | ||
1352 | python myclass_eventhandler() { | ||
1353 | from bb.event import getName | ||
1354 | from bb import data | ||
1355 | print("The name of the Event is %s" % getName(e)) | ||
1356 | print("The file we run for is %s" % data.getVar('FILE', e.data, True)) | ||
1357 | } | ||
1358 | </literallayout> | ||
1359 | </para> | ||
1360 | |||
1361 | <para> | ||
1341 | During a standard build, the following common events might occur: | 1362 | During a standard build, the following common events might occur: |
1342 | <itemizedlist> | 1363 | <itemizedlist> |
1343 | <listitem><para> | 1364 | <listitem><para> |