mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
documentation/poky-ref-manual/usingpoky.xml: 1.1.2 variables and updates
First pass at implementing the poky.ent variables. Also made some text corrections. (From yocto-docs rev: bbc29ec49291ac592708155a165bea16d20aa992) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
565d5abd87
commit
0cb1be9fae
@@ -1,5 +1,7 @@
|
|||||||
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
|
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
|
||||||
|
[<!ENTITY % poky SYSTEM "../poky.ent"> %poky; ] >
|
||||||
|
|
||||||
<chapter id='usingpoky'>
|
<chapter id='usingpoky'>
|
||||||
<title>Using the Yocto Project</title>
|
<title>Using the Yocto Project</title>
|
||||||
|
|
||||||
@@ -15,10 +17,8 @@
|
|||||||
<para>
|
<para>
|
||||||
You can find general information on how to build an image using the
|
You can find general information on how to build an image using the
|
||||||
Yocto Project in the
|
Yocto Project in the
|
||||||
<ulink url='http://www.yoctoproject.org/docs/1.1.1/yocto-project-qs/yocto-project-qs.html#building-image'>
|
"<ulink url='&YOCTO_DOCS_QS_URL;#building-image'>Building an Image</ulink>"
|
||||||
Building an Image</ulink> section of the
|
section of The Yocto Project Quick Start.
|
||||||
<ulink url='http://www.yoctoproject.org/docs/1.1.1/yocto-project-qs/yocto-project-qs.html'>
|
|
||||||
Yocto Project Quick Start</ulink>.
|
|
||||||
This section provides a summary of the build process and provides information
|
This section provides a summary of the build process and provides information
|
||||||
for less obvious aspects of the build process.
|
for less obvious aspects of the build process.
|
||||||
</para>
|
</para>
|
||||||
@@ -60,14 +60,14 @@
|
|||||||
files.
|
files.
|
||||||
Or, the target can be the name of a recipe for a specific piece of software such as
|
Or, the target can be the name of a recipe for a specific piece of software such as
|
||||||
<application>busybox</application>.
|
<application>busybox</application>.
|
||||||
For more details about the images Yocto Project supports, see the
|
For more details about the images the Yocto Project supports, see the
|
||||||
<link linkend="ref-images">'Reference: Images'</link> appendix.
|
"<link linkend="ref-images">Reference: Images</link>" appendix.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<note>
|
<note>
|
||||||
Building an image without GNU Public License Version 3 (GPLv3) components is
|
Building an image without GNU Public License Version 3 (GPLv3) components is
|
||||||
only supported for minimal and base images.
|
only supported for minimal and base images.
|
||||||
See <link linkend='ref-images'>'Reference: Images'</link> for more information.
|
See the "<link linkend='ref-images'>Reference: Images</link>" appendix for more information.
|
||||||
</note>
|
</note>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
@@ -93,10 +93,8 @@
|
|||||||
<filename class="directory">tmp/deploy/images</filename>.
|
<filename class="directory">tmp/deploy/images</filename>.
|
||||||
For information on how to run pre-built images such as <filename>qemux86</filename>
|
For information on how to run pre-built images such as <filename>qemux86</filename>
|
||||||
and <filename>qemuarm</filename>, see the
|
and <filename>qemuarm</filename>, see the
|
||||||
<ulink url='http://www.yoctoproject.org/docs/1.1.1/yocto-project-qs/yocto-project-qs.html#using-pre-built'>
|
"<ulink url='&YOCTO_DOCS_QS_URL;#using-pre-built'>Using Pre-Built Binaries and QEMU</ulink>"
|
||||||
Using Pre-Built Binaries and QEMU</ulink> section in the
|
section in the Yocto Project Quick Start.
|
||||||
<ulink url='http://www.yoctoproject.org/docs/1.1.1/yocto-project-qs/yocto-project-qs.html'>
|
|
||||||
Yocto Project Quick Start</ulink>.
|
|
||||||
For information about how to install these images, see the documentation for your
|
For information about how to install these images, see the documentation for your
|
||||||
particular board/machine.
|
particular board/machine.
|
||||||
</para>
|
</para>
|
||||||
@@ -181,7 +179,7 @@
|
|||||||
You can view a list of tasks in a given package by running the
|
You can view a list of tasks in a given package by running the
|
||||||
<filename>listtasks</filename> task as follows:
|
<filename>listtasks</filename> task as follows:
|
||||||
<literallayout class='monospaced'>
|
<literallayout class='monospaced'>
|
||||||
$ bitbake matchbox-desktop -c
|
$ bitbake matchbox-desktop -c listtasks
|
||||||
</literallayout>
|
</literallayout>
|
||||||
The results are in the file <filename>${WORKDIR}/temp/log.do_listtasks</filename>.
|
The results are in the file <filename>${WORKDIR}/temp/log.do_listtasks</filename>.
|
||||||
</para>
|
</para>
|
||||||
@@ -297,7 +295,7 @@
|
|||||||
if fatal_error:
|
if fatal_error:
|
||||||
bb.fatal("fatal_error detected, unable to print the task list")
|
bb.fatal("fatal_error detected, unable to print the task list")
|
||||||
bb.plain("The tasks present are abc")
|
bb.plain("The tasks present are abc")
|
||||||
bb.debug(2, "Finished figureing out the tasklist")
|
bb.debug(2, "Finished figuring out the tasklist")
|
||||||
}
|
}
|
||||||
</literallayout>
|
</literallayout>
|
||||||
</para>
|
</para>
|
||||||
|
|||||||
Reference in New Issue
Block a user