summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-development-environment.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/documentation/ref-manual/ref-development-environment.xml b/documentation/ref-manual/ref-development-environment.xml
index e590406706..13399016b1 100644
--- a/documentation/ref-manual/ref-development-environment.xml
+++ b/documentation/ref-manual/ref-development-environment.xml
@@ -2255,6 +2255,22 @@
2255 </para> 2255 </para>
2256 2256
2257 <para> 2257 <para>
2258 As an example, a dynamically created task when creating a
2259 particular image <replaceable>type</replaceable> would take the
2260 following form:
2261 <literallayout class='monospaced'>
2262 do_image_<replaceable>type</replaceable>[depends]
2263 </literallayout>
2264 So, if the <replaceable>type</replaceable> as specified by the
2265 <link linkend='var-IMAGE_FSTYPES'><filename>IMAGE_FSTYPES</filename></link>
2266 were <filename>ext4</filename>, the dynamically generated task
2267 would be as follows:
2268 <literallayout class='monospaced'>
2269 do_image_ext4[depends]
2270 </literallayout>
2271 </para>
2272
2273 <para>
2258 The final task involved in image creation is the 2274 The final task involved in image creation is the
2259 <link linkend='ref-tasks-image-complete'><filename>do_image_complete</filename></link> 2275 <link linkend='ref-tasks-image-complete'><filename>do_image_complete</filename></link>
2260 task. 2276 task.