aboutsummaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-04-24 05:19:07 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-01 20:50:44 +0100
commit0cd29aaf674fc82e84a1dd97673ec33750464771 (patch)
tree3ad4fcbbfb8d18eccaec77abf2f7c120d9fa02d5 /documentation
parent0c243d399a9be65395c580d431a3b926a1c4055b (diff)
downloadopenembedded-core-contrib-0cd29aaf674fc82e84a1dd97673ec33750464771.tar.gz
documentation/dev-manual/dev-manual-common-tasks.xml: Fix cusomizing example
As suggested by Paul Eggleton and Richard Purdie, the example that describes another method for creating a cusomt image was modified so that it is based on an existing recipe instead of requiring a new image. Reported-by: Paul Eggleton <paul.eggleton@linux.intel.com> (From yocto-docs rev: 65287ca135422a588d799143d93ccd4d058684ff) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 971a63655e..8dfaa7b0fb 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -477,12 +477,12 @@
</para>
<para>
- The other method for creating a custom image is to modify an existing image.
- For example, if a developer wants to add <filename>strace</filename> into
- the <filename>core-image-sato</filename> image, they can use the following recipe:
+ The other method for creating a custom image is to base it on an existing image.
+ For example, if you want to create an image based on <filename>core-image-sato</filename>
+ but add the additional package <filename>strace</filename> to the image,
+ copy the <filename>meta/recipes-sato/images/core-image-sato.bb</filename> to a
+ new <filename>.bb</filename> and add the following line to the end of the copy:
<literallayout class='monospaced'>
- require core-image-sato.bb
-
IMAGE_INSTALL += "strace"
</literallayout>
</para>