summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
diff options
context:
space:
mode:
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.