summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2016-01-19 16:11:46 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-29 17:04:47 +0000
commitd7481ceb9e98222a634ede8751110fe9cacb8536 (patch)
tree5aefda3528293c8aa796f02c2e4cea269fa2e1b7 /documentation
parentd39e9d1451c316083aee809fee22c539d4b8869d (diff)
downloadpoky-d7481ceb9e98222a634ede8751110fe9cacb8536.tar.gz
ref-manual: Added do_image and do_image_complete tasks
(From yocto-docs rev: 7b6eb076adc24a6f290e73db93aa831f982817b3) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-tasks.xml54
1 files changed, 54 insertions, 0 deletions
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 @@
99 </para> 99 </para>
100 </section> 100 </section>
101 101
102 <section id='ref-tasks-image'>
103 <title><filename>do_image</filename></title>
104
105 <para>
106 Starts the image generation process.
107 The <filename>do_image</filename> task runs after the
108 OpenEmbedded build system has run the
109 <link linkend='ref-tasks-rootfs'><filename>do_rootfs</filename></link>
110 task during which packages are identified for installation into
111 the image and the root filesystem is created, complete with
112 post-processing.
113 </para>
114
115 <para>
116 The <filename>do_image</filename> task performs pre-processing
117 on the image through the
118 <link linkend='var-IMAGE_PREPROCESS_COMMAND'><filename>IMAGE_PREPROCESS_COMMAND</filename></link>
119 and dynamically generates supporting
120 <filename>do_image_*</filename> tasks as needed.
121 </para>
122
123 <para>
124 For more information on image creation, see the
125 "<link linkend='image-generation-dev-environment'>Image Generation</link>"
126 section.
127 </para>
128 </section>
129
130 <section id='ref-tasks-image-complete'>
131 <title><filename>do_image_complete</filename></title>
132
133 <para>
134 Completes the image generation process.
135 The <filename>do_image_complete</filename> task runs after the
136 OpenEmbedded build system has run the
137 <link linkend='ref-tasks-rootfs'><filename>do_image</filename></link>
138 task during which image pre-processing occurs and through
139 dynamically generated <filename>do_image_*</filename> tasks the
140 image is constructed.
141 </para>
142
143 <para>
144 The <filename>do_image_complete</filename> task performs
145 post-processing on the image through the
146 <link linkend='var-IMAGE_POSTPROCESS_COMMAND'><filename>IMAGE_POSTPROCESS_COMMAND</filename></link>.
147 </para>
148
149 <para>
150 For more information on image creation, see the
151 "<link linkend='image-generation-dev-environment'>Image Generation</link>"
152 section.
153 </para>
154 </section>
155
102 <section id='ref-tasks-install'> 156 <section id='ref-tasks-install'>
103 <title><filename>do_install</filename></title> 157 <title><filename>do_install</filename></title>
104 158