dev-manual: Re-worded the "Customizing Images Using Custom .bb Files"

Changed the wording so that it reflects better what is actually
going on when use IMAGE_INSTALL to afect an image.

Reported-by: Robert P. J. Day <rpjday@crashcourse.ca>
(From yocto-docs rev: 36178822a53f9eb7065513c8b2b1b01fc166b771)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Scott Rifenbark 2013-11-15 14:04:28 -08:00 committed by Richard Purdie
parent 4d3730597d
commit 3bc23c367b
1 changed files with 4 additions and 3 deletions

View File

@ -891,7 +891,8 @@
<title>Customizing Images Using Custom .bb Files</title> <title>Customizing Images Using Custom .bb Files</title>
<para> <para>
One way to get additional software into an image is to create a custom image. One way to customize an image is to create a custom recipe
that defines additional software as part of the image.
The following example shows the form for the two lines you need: The following example shows the form for the two lines you need:
<literallayout class='monospaced'> <literallayout class='monospaced'>
IMAGE_INSTALL = "packagegroup-core-x11-base package1 package2" IMAGE_INSTALL = "packagegroup-core-x11-base package1 package2"
@ -901,8 +902,8 @@
</para> </para>
<para> <para>
By creating a custom image, a developer has total control Defining the software using a custom recipe gives you total
over the contents of the image. control over the contents of the image.
It is important to use the correct names of packages in the It is important to use the correct names of packages in the
<filename><ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_INSTALL'>IMAGE_INSTALL</ulink></filename> <filename><ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_INSTALL'>IMAGE_INSTALL</ulink></filename>
variable. variable.