summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2013-11-15 14:04:28 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-03 12:53:59 +0000
commit3bc23c367b0e0cfc59a3d2f92b8921fb3c8b979f (patch)
treecb1d401d8428a861e9c2c3703e704d06bf1bd033 /documentation/dev-manual
parent4d3730597df1ea6dd4f077e4c4eeee6092185bb2 (diff)
downloadpoky-3bc23c367b0e0cfc59a3d2f92b8921fb3c8b979f.tar.gz
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>
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 653f3da438..d6f5727114 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -891,7 +891,8 @@
891 <title>Customizing Images Using Custom .bb Files</title> 891 <title>Customizing Images Using Custom .bb Files</title>
892 892
893 <para> 893 <para>
894 One way to get additional software into an image is to create a custom image. 894 One way to customize an image is to create a custom recipe
895 that defines additional software as part of the image.
895 The following example shows the form for the two lines you need: 896 The following example shows the form for the two lines you need:
896 <literallayout class='monospaced'> 897 <literallayout class='monospaced'>
897 IMAGE_INSTALL = "packagegroup-core-x11-base package1 package2" 898 IMAGE_INSTALL = "packagegroup-core-x11-base package1 package2"
@@ -901,8 +902,8 @@
901 </para> 902 </para>
902 903
903 <para> 904 <para>
904 By creating a custom image, a developer has total control 905 Defining the software using a custom recipe gives you total
905 over the contents of the image. 906 control over the contents of the image.
906 It is important to use the correct names of packages in the 907 It is important to use the correct names of packages in the
907 <filename><ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_INSTALL'>IMAGE_INSTALL</ulink></filename> 908 <filename><ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_INSTALL'>IMAGE_INSTALL</ulink></filename>
908 variable. 909 variable.