summaryrefslogtreecommitdiffstats
path: root/documentation/poky-ref-manual/extendpoky.xml
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-20 17:25:58 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-21 13:08:45 +0100
commite9b17e3fa7f15740d8e5cfdfe19c0565a74c0d20 (patch)
treed5bbbbe052a51dc4494e4913a03c95045682efd6 /documentation/poky-ref-manual/extendpoky.xml
parentb3d84fb35a2d11587d973c59a6d0851c1988d409 (diff)
downloadpoky-e9b17e3fa7f15740d8e5cfdfe19c0565a74c0d20.tar.gz
Rename poky-image-* -> core-image-* and task-poky-* -> task-core-*
(From yocto-docs rev: 0feb6b8f9621087ba5fd77d3c8f3e23132c97187) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/poky-ref-manual/extendpoky.xml')
-rw-r--r--documentation/poky-ref-manual/extendpoky.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/documentation/poky-ref-manual/extendpoky.xml b/documentation/poky-ref-manual/extendpoky.xml
index 6a5e1a5d8a..69ff4e2a52 100644
--- a/documentation/poky-ref-manual/extendpoky.xml
+++ b/documentation/poky-ref-manual/extendpoky.xml
@@ -269,7 +269,7 @@ fi
269 The following example shows the form for the two lines you need: 269 The following example shows the form for the two lines you need:
270 </para> 270 </para>
271 <programlisting> 271 <programlisting>
272IMAGE_INSTALL = "task-poky-x11-base package1 package2" 272IMAGE_INSTALL = "task-core-x11-base package1 package2"
273 273
274inherit poky-image 274inherit poky-image
275 </programlisting> 275 </programlisting>
@@ -283,11 +283,11 @@ inherit poky-image
283 </para> 283 </para>
284 <para> 284 <para>
285 The other method for creating a custom image is to modify an existing image. 285 The other method for creating a custom image is to modify an existing image.
286 For example, if a developer wants to add "strace" into "poky-image-sato", they can use 286 For example, if a developer wants to add "strace" into "core-image-sato", they can use
287 the following recipe: 287 the following recipe:
288 </para> 288 </para>
289 <programlisting> 289 <programlisting>
290require poky-image-sato.bb 290require core-image-sato.bb
291 291
292IMAGE_INSTALL += "strace" 292IMAGE_INSTALL += "strace"
293 </programlisting> 293 </programlisting>
@@ -368,8 +368,8 @@ RRECOMMENDS_task-custom-tools = "\
368 Poky ships with two SSH servers you can use in your images: Dropbear and OpenSSH. 368 Poky ships with two SSH servers you can use in your images: Dropbear and OpenSSH.
369 Dropbear is a minimal SSH server appropriate for resource-constrained environments, 369 Dropbear is a minimal SSH server appropriate for resource-constrained environments,
370 while OpenSSH is a well-known standard SSH server implementation. 370 while OpenSSH is a well-known standard SSH server implementation.
371 By default, poky-image-sato is configured to use Dropbear. 371 By default, core-image-sato is configured to use Dropbear.
372 The poky-image-basic and poky-image-lsb images both include OpenSSH. 372 The core-image-basic and core-image-lsb images both include OpenSSH.
373 To change these defaults, edit the <filename>IMAGE_FEATURES</filename> variable 373 To change these defaults, edit the <filename>IMAGE_FEATURES</filename> variable
374 so that it sets the image you are working with to include ssh-server-dropbear 374 so that it sets the image you are working with to include ssh-server-dropbear
375 or ssh-server-openssh. 375 or ssh-server-openssh.
@@ -412,7 +412,7 @@ DISTRO_EXTRA_RDEPENDS += "strace"
412 </para> 412 </para>
413 <programlisting> 413 <programlisting>
414$ bitbake -c clean task-boot task-base task-poky 414$ bitbake -c clean task-boot task-base task-poky
415$ bitbake poky-image-sato 415$ bitbake core-image-sato
416 </programlisting> 416 </programlisting>
417 </section> 417 </section>
418 418