summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--documentation/poky-ref-manual/usingpoky.xml26
1 files changed, 12 insertions, 14 deletions
diff --git a/documentation/poky-ref-manual/usingpoky.xml b/documentation/poky-ref-manual/usingpoky.xml
index 183d4b357a..914a0f5771 100644
--- a/documentation/poky-ref-manual/usingpoky.xml
+++ b/documentation/poky-ref-manual/usingpoky.xml
@@ -1,5 +1,7 @@
1<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" 1<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
2"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> 2"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
3[<!ENTITY % poky SYSTEM "../poky.ent"> %poky; ] >
4
3<chapter id='usingpoky'> 5<chapter id='usingpoky'>
4<title>Using the Yocto Project</title> 6<title>Using the Yocto Project</title>
5 7
@@ -15,10 +17,8 @@
15 <para> 17 <para>
16 You can find general information on how to build an image using the 18 You can find general information on how to build an image using the
17 Yocto Project in the 19 Yocto Project in the
18 <ulink url='http://www.yoctoproject.org/docs/1.1.1/yocto-project-qs/yocto-project-qs.html#building-image'> 20 "<ulink url='&YOCTO_DOCS_QS_URL;#building-image'>Building an Image</ulink>"
19 Building an Image</ulink> section of the 21 section of The Yocto Project Quick Start.
20 <ulink url='http://www.yoctoproject.org/docs/1.1.1/yocto-project-qs/yocto-project-qs.html'>
21 Yocto Project Quick Start</ulink>.
22 This section provides a summary of the build process and provides information 22 This section provides a summary of the build process and provides information
23 for less obvious aspects of the build process. 23 for less obvious aspects of the build process.
24 </para> 24 </para>
@@ -60,14 +60,14 @@
60 files. 60 files.
61 Or, the target can be the name of a recipe for a specific piece of software such as 61 Or, the target can be the name of a recipe for a specific piece of software such as
62 <application>busybox</application>. 62 <application>busybox</application>.
63 For more details about the images Yocto Project supports, see the 63 For more details about the images the Yocto Project supports, see the
64 <link linkend="ref-images">'Reference: Images'</link> appendix. 64 "<link linkend="ref-images">Reference: Images</link>" appendix.
65 </para> 65 </para>
66 66
67 <note> 67 <note>
68 Building an image without GNU Public License Version 3 (GPLv3) components is 68 Building an image without GNU Public License Version 3 (GPLv3) components is
69 only supported for minimal and base images. 69 only supported for minimal and base images.
70 See <link linkend='ref-images'>'Reference: Images'</link> for more information. 70 See the "<link linkend='ref-images'>Reference: Images</link>" appendix for more information.
71 </note> 71 </note>
72 </section> 72 </section>
73 73
@@ -93,10 +93,8 @@
93 <filename class="directory">tmp/deploy/images</filename>. 93 <filename class="directory">tmp/deploy/images</filename>.
94 For information on how to run pre-built images such as <filename>qemux86</filename> 94 For information on how to run pre-built images such as <filename>qemux86</filename>
95 and <filename>qemuarm</filename>, see the 95 and <filename>qemuarm</filename>, see the
96 <ulink url='http://www.yoctoproject.org/docs/1.1.1/yocto-project-qs/yocto-project-qs.html#using-pre-built'> 96 "<ulink url='&YOCTO_DOCS_QS_URL;#using-pre-built'>Using Pre-Built Binaries and QEMU</ulink>"
97 Using Pre-Built Binaries and QEMU</ulink> section in the 97 section in the Yocto Project Quick Start.
98 <ulink url='http://www.yoctoproject.org/docs/1.1.1/yocto-project-qs/yocto-project-qs.html'>
99 Yocto Project Quick Start</ulink>.
100 For information about how to install these images, see the documentation for your 98 For information about how to install these images, see the documentation for your
101 particular board/machine. 99 particular board/machine.
102 </para> 100 </para>
@@ -181,7 +179,7 @@
181 You can view a list of tasks in a given package by running the 179 You can view a list of tasks in a given package by running the
182 <filename>listtasks</filename> task as follows: 180 <filename>listtasks</filename> task as follows:
183 <literallayout class='monospaced'> 181 <literallayout class='monospaced'>
184 $ bitbake matchbox-desktop -c 182 $ bitbake matchbox-desktop -c listtasks
185 </literallayout> 183 </literallayout>
186 The results are in the file <filename>${WORKDIR}/temp/log.do_listtasks</filename>. 184 The results are in the file <filename>${WORKDIR}/temp/log.do_listtasks</filename>.
187 </para> 185 </para>
@@ -297,7 +295,7 @@
297 if fatal_error: 295 if fatal_error:
298 bb.fatal("fatal_error detected, unable to print the task list") 296 bb.fatal("fatal_error detected, unable to print the task list")
299 bb.plain("The tasks present are abc") 297 bb.plain("The tasks present are abc")
300 bb.debug(2, "Finished figureing out the tasklist") 298 bb.debug(2, "Finished figuring out the tasklist")
301 } 299 }
302 </literallayout> 300 </literallayout>
303 </para> 301 </para>