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 () { The above event handler prints the name of the event and the content of the FILE variable. + During a Build, the following common events occur: + + bb.event.ConfigParsed() + bb.event.ParseStarted() + bb.event.ParseProgress() + bb.event.ParseCompleted() + bb.event.BuildStarted() + bb.build.TaskStarted() + bb.build.TaskInvalid() + bb.build.TaskFailedSilent() + bb.build.TaskFailed() + bb.build.TaskSucceeded() + bb.event.BuildCompleted() + bb.cooker.CookerExit() + + Other events that occur based on specific requests to the server: + + bb.event.TreeDataPreparationStarted() + bb.event.TreeDataPreparationProgress + bb.event.TreeDataPreparationCompleted + bb.event.DepTreeGenerated + bb.event.CoreBaseFilesFound + bb.event.ConfigFilePathFound + bb.event.FilesMatchingFound + bb.event.ConfigFilesFound + bb.event.TargetsTreeGenerated +