From e9b17e3fa7f15740d8e5cfdfe19c0565a74c0d20 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 20 Apr 2011 17:25:58 +0100 Subject: Rename poky-image-* -> core-image-* and task-poky-* -> task-core-* (From yocto-docs rev: 0feb6b8f9621087ba5fd77d3c8f3e23132c97187) Signed-off-by: Richard Purdie --- documentation/poky-ref-manual/development.xml | 10 +++++----- documentation/poky-ref-manual/extendpoky.xml | 12 ++++++------ documentation/poky-ref-manual/ref-bitbake.xml | 6 +++--- documentation/poky-ref-manual/ref-images.xml | 16 ++++++++-------- 4 files changed, 22 insertions(+), 22 deletions(-) (limited to 'documentation/poky-ref-manual') diff --git a/documentation/poky-ref-manual/development.xml b/documentation/poky-ref-manual/development.xml index 45df028..cee865a 100644 --- a/documentation/poky-ref-manual/development.xml +++ b/documentation/poky-ref-manual/development.xml @@ -384,7 +384,7 @@ Kernel: Use the file chooser to select the kernel used with QEMU. Root filesystem: Use the file chooser to select the root filesystem directory. This directory is where you use "poky-extract-sdk" to extract the - poky-image-sdk tarball. + core-image-sdk tarball. @@ -738,7 +738,7 @@ tmp/sysroots/<host-arch>/usr/bin/<target-abi>-gdb Perhaps the easiest is to have an 'sdk' image that corresponds to the plain image installed on the device. - In the case of 'poky-image-sato', 'poky-image-sdk' would contain suitable symbols. + In the case of 'core-image-sato', 'core-image-sdk' would contain suitable symbols. Because the sdk images already have the debugging symbols installed it is just a question of expanding the archive to some location and then informing GDB. @@ -764,17 +764,17 @@ tmp/sysroots/<host-arch>/usr/bin/<target-abi>-gdb tmp/rootfs: tmp/sysroots/i686-linux/usr/bin/opkg-cl -f \ -tmp/work/<target-abi>/poky-image-sato-1.0-r0/temp/opkg.conf -o \ +tmp/work/<target-abi>/core-image-sato-1.0-r0/temp/opkg.conf -o \ tmp/rootfs/ update Install the debugging information: tmp/sysroots/i686-linux/usr/bin/opkg-cl -f \ -tmp/work/<target-abi>/poky-image-sato-1.0-r0/temp/opkg.conf \ +tmp/work/<target-abi>/core-image-sato-1.0-r0/temp/opkg.conf \ -o tmp/rootfs install foo tmp/sysroots/i686-linux/usr/bin/opkg-cl -f \ -tmp/work/<target-abi>/poky-image-sato-1.0-r0/temp/opkg.conf \ +tmp/work/<target-abi>/core-image-sato-1.0-r0/temp/opkg.conf \ -o tmp/rootfs install foo-dbg diff --git a/documentation/poky-ref-manual/extendpoky.xml b/documentation/poky-ref-manual/extendpoky.xml index 6a5e1a5..69ff4e2 100644 --- a/documentation/poky-ref-manual/extendpoky.xml +++ b/documentation/poky-ref-manual/extendpoky.xml @@ -269,7 +269,7 @@ fi The following example shows the form for the two lines you need: -IMAGE_INSTALL = "task-poky-x11-base package1 package2" +IMAGE_INSTALL = "task-core-x11-base package1 package2" inherit poky-image @@ -283,11 +283,11 @@ inherit poky-image 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: -require poky-image-sato.bb +require core-image-sato.bb IMAGE_INSTALL += "strace" @@ -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 IMAGE_FEATURES 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" $ bitbake -c clean task-boot task-base task-poky -$ bitbake poky-image-sato +$ bitbake core-image-sato diff --git a/documentation/poky-ref-manual/ref-bitbake.xml b/documentation/poky-ref-manual/ref-bitbake.xml index 75b3bf5..df8432c 100644 --- a/documentation/poky-ref-manual/ref-bitbake.xml +++ b/documentation/poky-ref-manual/ref-bitbake.xml @@ -9,7 +9,7 @@ BitBake is a program written in Python that interprets the metadata that makes up Poky. At some point, people wonder what actually happens when you enter: - $ bitbake poky-image-sato + $ bitbake core-image-sato @@ -111,11 +111,11 @@ Once all the .bb files have been - parsed, BitBake starts to build the target (poky-image-sato in the previous section's + parsed, BitBake starts to build the target (core-image-sato in the previous section's example) and looks for providers of that target. Once a provider is selected, BitBake resolves all the dependencies for the target. - In the case of "poky-image-sato", it would lead to task-base.bb, + In the case of "core-image-sato", it would lead to task-base.bb, which in turn leads to packages like Contacts, Dates and BusyBox. These packages in turn depend on glibc and the toolchain. diff --git a/documentation/poky-ref-manual/ref-images.xml b/documentation/poky-ref-manual/ref-images.xml index 03cc624..955fae5 100644 --- a/documentation/poky-ref-manual/ref-images.xml +++ b/documentation/poky-ref-manual/ref-images.xml @@ -28,41 +28,41 @@ - poky-image-minimal - A small image just capable + core-image-minimal - A small image just capable of allowing a device to boot. - poky-image-base - A console-only image that fully + core-image-base - A console-only image that fully supports the target device hardware. - poky-image-core - An X11 image with simple + core-image-core - An X11 image with simple applications such as terminal, editor, and file manager. - poky-image-sato - An X11 image with Sato theme and + core-image-sato - An X11 image with Sato theme and Pimlico applications. The image also contains terminal, editor, and file manager. - poky-image-sato-dev - An X11 image similar to - poky-image-sato but + core-image-sato-dev - An X11 image similar to + core-image-sato but also includes a native toolchain and libraries needed to build applications on the device itself. The image also includes testing and profiling tools - as well as debug symbols. This image was formerly poky-image-sdk. + as well as debug symbols. This image was formerly core-image-sdk. - poky-image-lsb - An image suitable for implementations + core-image-lsb - An image suitable for implementations that conform to Linux Standard Base (LSB). -- cgit v1.1