From: Richard Purdie Date: Sat, 18 Jan 2014 14:22:41 +0000 (+0000) Subject: user-manual-metadata: Add lists of common events X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=240d3f0439e7c1f12e06fa738acc20fbcac8ae65;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git user-manual-metadata: Add lists of common events Signed-off-by: Richard Purdie --- diff --git a/doc/user-manual/user-manual-metadata.xml b/doc/user-manual/user-manual-metadata.xml index c6b9005cd75..53f677e2f3e 100644 --- a/doc/user-manual/user-manual-metadata.xml +++ b/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 +