Rename poky-image-* -> core-image-* and task-poky-* -> task-core-*

(From yocto-docs rev: 0feb6b8f9621087ba5fd77d3c8f3e23132c97187)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2011-04-20 17:25:58 +01:00
parent b3d84fb35a
commit e9b17e3fa7
7 changed files with 26 additions and 26 deletions

View File

@@ -269,7 +269,7 @@ fi
The following example shows the form for the two lines you need:
</para>
<programlisting>
IMAGE_INSTALL = "task-poky-x11-base package1 package2"
IMAGE_INSTALL = "task-core-x11-base package1 package2"
inherit poky-image
</programlisting>
@@ -283,11 +283,11 @@ inherit poky-image
</para>
<para>
The other method for creating a custom image is to modify an existing image.
For example, if a developer wants to add "strace" into "poky-image-sato", they can use
For example, if a developer wants to add "strace" into "core-image-sato", they can use
the following recipe:
</para>
<programlisting>
require poky-image-sato.bb
require core-image-sato.bb
IMAGE_INSTALL += "strace"
</programlisting>
@@ -368,8 +368,8 @@ RRECOMMENDS_task-custom-tools = "\
Poky ships with two SSH servers you can use in your images: Dropbear and OpenSSH.
Dropbear is a minimal SSH server appropriate for resource-constrained environments,
while OpenSSH is a well-known standard SSH server implementation.
By default, poky-image-sato is configured to use Dropbear.
The poky-image-basic and poky-image-lsb images both include OpenSSH.
By default, core-image-sato is configured to use Dropbear.
The core-image-basic and core-image-lsb images both include OpenSSH.
To change these defaults, edit the <filename>IMAGE_FEATURES</filename> variable
so that it sets the image you are working with to include ssh-server-dropbear
or ssh-server-openssh.
@@ -412,7 +412,7 @@ DISTRO_EXTRA_RDEPENDS += "strace"
</para>
<programlisting>
$ bitbake -c clean task-boot task-base task-poky
$ bitbake poky-image-sato
$ bitbake core-image-sato
</programlisting>
</section>