From d7481ceb9e98222a634ede8751110fe9cacb8536 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Tue, 19 Jan 2016 16:11:46 -0800 Subject: [PATCH] ref-manual: Added do_image and do_image_complete tasks (From yocto-docs rev: 7b6eb076adc24a6f290e73db93aa831f982817b3) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/ref-manual/ref-tasks.xml | 54 ++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/documentation/ref-manual/ref-tasks.xml b/documentation/ref-manual/ref-tasks.xml index c7f6a2e01a..8ac37a0d53 100644 --- a/documentation/ref-manual/ref-tasks.xml +++ b/documentation/ref-manual/ref-tasks.xml @@ -99,6 +99,60 @@ +
+ <filename>do_image</filename> + + + Starts the image generation process. + The do_image task runs after the + OpenEmbedded build system has run the + do_rootfs + task during which packages are identified for installation into + the image and the root filesystem is created, complete with + post-processing. + + + + The do_image task performs pre-processing + on the image through the + IMAGE_PREPROCESS_COMMAND + and dynamically generates supporting + do_image_* tasks as needed. + + + + For more information on image creation, see the + "Image Generation" + section. + +
+ +
+ <filename>do_image_complete</filename> + + + Completes the image generation process. + The do_image_complete task runs after the + OpenEmbedded build system has run the + do_image + task during which image pre-processing occurs and through + dynamically generated do_image_* tasks the + image is constructed. + + + + The do_image_complete task performs + post-processing on the image through the + IMAGE_POSTPROCESS_COMMAND. + + + + For more information on image creation, see the + "Image Generation" + section. + +
+
<filename>do_install</filename>