diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-18 14:22:41 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-27 21:03:21 +0000 |
commit | c676bf8453523e29bb5977610f7bdaebb1546788 (patch) | |
tree | da08fb0de825e33e47e54f569ae2c796c042b577 | |
parent | c8892fc919c4f358371dc4e74a329f32836bea0c (diff) | |
download | poky-c676bf8453523e29bb5977610f7bdaebb1546788.tar.gz |
bitbake: user-manual-metadata: Add lists of common events
(Bitbake rev: 240d3f0439e7c1f12e06fa738acc20fbcac8ae65)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/doc/user-manual/user-manual-metadata.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/bitbake/doc/user-manual/user-manual-metadata.xml b/bitbake/doc/user-manual/user-manual-metadata.xml index c6b9005cd7..53f677e2f3 100644 --- a/bitbake/doc/user-manual/user-manual-metadata.xml +++ b/bitbake/doc/user-manual/user-manual-metadata.xml | |||
@@ -562,6 +562,33 @@ python do_printdate () { | |||
562 | <para> | 562 | <para> |
563 | The above event handler prints the name of the event | 563 | The above event handler prints the name of the event |
564 | and the content of the <filename>FILE</filename> variable. | 564 | and the content of the <filename>FILE</filename> variable. |
565 | During a Build, the following common events occur: | ||
566 | <itemizedlist> | ||
567 | <listitem><para><filename>bb.event.ConfigParsed()</filename></para></listitem> | ||
568 | <listitem><para><filename>bb.event.ParseStarted()</filename></para></listitem> | ||
569 | <listitem><para><filename>bb.event.ParseProgress()</filename></para></listitem> | ||
570 | <listitem><para><filename>bb.event.ParseCompleted()</filename></para></listitem> | ||
571 | <listitem><para><filename>bb.event.BuildStarted()</filename></para></listitem> | ||
572 | <listitem><para><filename>bb.build.TaskStarted()</filename></para></listitem> | ||
573 | <listitem><para><filename>bb.build.TaskInvalid()</filename></para></listitem> | ||
574 | <listitem><para><filename>bb.build.TaskFailedSilent()</filename></para></listitem> | ||
575 | <listitem><para><filename>bb.build.TaskFailed()</filename></para></listitem> | ||
576 | <listitem><para><filename>bb.build.TaskSucceeded()</filename></para></listitem> | ||
577 | <listitem><para><filename>bb.event.BuildCompleted()</filename></para></listitem> | ||
578 | <listitem><para><filename>bb.cooker.CookerExit()</filename></para></listitem> | ||
579 | </itemizedlist> | ||
580 | Other events that occur based on specific requests to the server: | ||
581 | <itemizedlist> | ||
582 | <listitem><para><filename>bb.event.TreeDataPreparationStarted()</filename></para></listitem> | ||
583 | <listitem><para><filename>bb.event.TreeDataPreparationProgress</filename></para></listitem> | ||
584 | <listitem><para><filename>bb.event.TreeDataPreparationCompleted</filename></para></listitem> | ||
585 | <listitem><para><filename>bb.event.DepTreeGenerated</filename></para></listitem> | ||
586 | <listitem><para><filename>bb.event.CoreBaseFilesFound</filename></para></listitem> | ||
587 | <listitem><para><filename>bb.event.ConfigFilePathFound</filename></para></listitem> | ||
588 | <listitem><para><filename>bb.event.FilesMatchingFound</filename></para></listitem> | ||
589 | <listitem><para><filename>bb.event.ConfigFilesFound</filename></para></listitem> | ||
590 | <listitem><para><filename>bb.event.TargetsTreeGenerated</filename></para></listitem> | ||
591 | </itemizedlist> | ||
565 | </para> | 592 | </para> |
566 | </section> | 593 | </section> |
567 | 594 | ||