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

(From OE-Core rev: 560b04181d8f51d189b99f01a72f17210dadf7a3)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-04-20 17:25:23 +01:00
parent 4d609d5021
commit 6e95cb246f
89 changed files with 543 additions and 543 deletions

View File

@ -87,22 +87,22 @@ Hard Disk:
1. Build a directdisk image format. This will generate proper partition tables 1. Build a directdisk image format. This will generate proper partition tables
that will in turn be written to the physical media. For example: that will in turn be written to the physical media. For example:
$ bitbake poky-image-minimal-directdisk $ bitbake core-image-minimal-directdisk
2. Use the "dd" utility to write the image to the raw block device. For example: 2. Use the "dd" utility to write the image to the raw block device. For example:
# dd if=poky-image-minimal-directdisk-atom-pc.hdddirect of=/dev/sdb # dd if=core-image-minimal-directdisk-atom-pc.hdddirect of=/dev/sdb
USB Device: USB Device:
1. Build an hddimg image format. This is a simple filesystem without partition 1. Build an hddimg image format. This is a simple filesystem without partition
tables and is suitable for USB keys. For example: tables and is suitable for USB keys. For example:
$ bitbake poky-image-minimal-live $ bitbake core-image-minimal-live
2. Use the "dd" utility to write the image to the raw block device. For 2. Use the "dd" utility to write the image to the raw block device. For
example: example:
# dd if=poky-image-minimal-live-atom-pc.hddimg of=/dev/sdb # dd if=core-image-minimal-live-atom-pc.hddimg of=/dev/sdb
If the device fails to boot with "Boot error" displayed, it is likely the BIOS If the device fails to boot with "Boot error" displayed, it is likely the BIOS
cannot understand the physical layout of the disk (or rather it expects a cannot understand the physical layout of the disk (or rather it expects a
@ -126,7 +126,7 @@ USB Device:
b. Copy the contents of the poky image to the USB-ZIP mode device: b. Copy the contents of the poky image to the USB-ZIP mode device:
# mount -o loop poky-image-minimal-live-atom-pc.hddimg /tmp/image # mount -o loop core-image-minimal-live-atom-pc.hddimg /tmp/image
# mount /dev/sdb4 /tmp/usbkey # mount /dev/sdb4 /tmp/usbkey
# cp -rf /tmp/image/* /tmp/usbkey # cp -rf /tmp/image/* /tmp/usbkey
@ -185,7 +185,7 @@ and may require modification of the NAND environment.
# cp u-boot-beagleboard.bin /media/boot/u-boot.bin # cp u-boot-beagleboard.bin /media/boot/u-boot.bin
3. Install the root filesystem 3. Install the root filesystem
# tar x -C /media/root -f poky-image-$IMAGE_TYPE-beagleboard.tar.bz2 # tar x -C /media/root -f core-image-$IMAGE_TYPE-beagleboard.tar.bz2
# tar x -C /media/root -f modules-$KERNEL_VERSION-beagleboard.tgz # tar x -C /media/root -f modules-$KERNEL_VERSION-beagleboard.tgz
4. Install the kernel uImage 4. Install the kernel uImage
@ -279,11 +279,11 @@ name in all commands where appropriate.
--- Preparation --- --- Preparation ---
1) Build an image (e.g. poky-image-minimal) using "routerstationpro" as the 1) Build an image (e.g. core-image-minimal) using "routerstationpro" as the
MACHINE MACHINE
2) Partition the USB drive so that primary partition 1 is type Linux (83). 2) Partition the USB drive so that primary partition 1 is type Linux (83).
Minimum size depends on your root image size - poky-image-minimal probably Minimum size depends on your root image size - core-image-minimal probably
only needs 8-16MB, other images will need more. only needs 8-16MB, other images will need more.
# fdisk /dev/sdb # fdisk /dev/sdb
@ -304,11 +304,11 @@ only needs 8-16MB, other images will need more.
# mke2fs -j /dev/sdb1 # mke2fs -j /dev/sdb1
4) Mount partition 1 and then extract the contents of 4) Mount partition 1 and then extract the contents of
tmp/deploy/images/poky-image-XXXX.tar.bz2 into it (preserving permissions). tmp/deploy/images/core-image-XXXX.tar.bz2 into it (preserving permissions).
# mount /dev/sdb1 /media/sdb1 # mount /dev/sdb1 /media/sdb1
# cd /media/sdb1 # cd /media/sdb1
# tar -xvjpf tmp/deploy/images/poky-image-XXXX.tar.bz2 # tar -xvjpf tmp/deploy/images/core-image-XXXX.tar.bz2
5) Unmount the USB drive and then plug it into the board's USB port 5) Unmount the USB drive and then plug it into the board's USB port

View File

@ -0,0 +1,15 @@
#
# Copyright (C) 2010 Intel Corporation.
#
require recipes-core/images/core-image-directdisk.inc
DESCRIPTION = "Bootable Minimal Real-Time Direct Disk Image"
ROOTFS = "${DEPLOY_DIR_IMAGE}/core-image-minimal-rt-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootdirectdisk[depends] += "core-image-minimal-rt:do_rootfs"

View File

@ -0,0 +1,15 @@
#
# Copyright (C) 2010 Intel Corporation.
#
DESCRIPTION = "Bootable Live Minimal Real-Time Linux Image"
require recipes-core/images/core-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/core-image-minimal-rt-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "core-image-minimal-rt:do_rootfs"

View File

@ -5,7 +5,7 @@
DESCRIPTION = "Minimal Real-Time Linux Image" DESCRIPTION = "Minimal Real-Time Linux Image"
DEPENDS = "linux-yocto-rt" DEPENDS = "linux-yocto-rt"
require recipes-core/images/poky-image-minimal.bb require recipes-core/images/core-image-minimal.bb
IMAGE_INSTALL += "rt-tests" IMAGE_INSTALL += "rt-tests"

View File

@ -1,15 +0,0 @@
#
# Copyright (C) 2010 Intel Corporation.
#
require recipes-core/images/poky-image-directdisk.inc
DESCRIPTION = "Bootable Minimal Real-Time Direct Disk Image"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-minimal-rt-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootdirectdisk[depends] += "poky-image-minimal-rt:do_rootfs"

View File

@ -1,15 +0,0 @@
#
# Copyright (C) 2010 Intel Corporation.
#
DESCRIPTION = "Bootable Live Minimal Real-Time Linux Image"
require recipes-core/images/poky-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-minimal-rt-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "poky-image-minimal-rt:do_rootfs"

View File

@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
# IMAGE_FEATURES control content of images built with Poky. # IMAGE_FEATURES control content of images built with Poky.
# #
# By default we install task-poky-boot and task-base packages - this gives us # By default we install task-core-boot and task-base packages - this gives us
# working (console only) rootfs. # working (console only) rootfs.
# #
# Available IMAGE_FEATURES: # Available IMAGE_FEATURES:
@ -31,68 +31,68 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
# #
POKY_BASE_INSTALL = '\ POKY_BASE_INSTALL = '\
task-poky-boot \ task-core-boot \
task-base-extended \ task-base-extended \
${@base_contains("IMAGE_FEATURES", "dbg-pkgs", "task-poky-boot-dbg task-base-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", "dbg-pkgs", "task-core-boot-dbg task-base-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", "dev-pkgs", "task-poky-boot-dev task-base-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", "dev-pkgs", "task-core-boot-dev task-base-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "apps-console-core", "task-poky-apps-console", "",d)} \ ${@base_contains("IMAGE_FEATURES", "apps-console-core", "task-core-apps-console", "",d)} \
${@base_contains("IMAGE_FEATURES", ["apps-console-core", "dbg-pkgs"], "task-poky-apps-console-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["apps-console-core", "dbg-pkgs"], "task-core-apps-console-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["apps-console-core", "dev-pkgs"], "task-poky-apps-console-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["apps-console-core", "dev-pkgs"], "task-core-apps-console-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "x11-base", "task-poky-x11-base", "",d)} \ ${@base_contains("IMAGE_FEATURES", "x11-base", "task-core-x11-base", "",d)} \
${@base_contains("IMAGE_FEATURES", ["x11-base", "dbg-pkgs"], "task-poky-x11-base-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["x11-base", "dbg-pkgs"], "task-core-x11-base-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["x11-base", "dev-pkgs"], "task-poky-x11-base-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["x11-base", "dev-pkgs"], "task-core-x11-base-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "x11-sato", "task-poky-x11-sato", "",d)} \ ${@base_contains("IMAGE_FEATURES", "x11-sato", "task-core-x11-sato", "",d)} \
${@base_contains("IMAGE_FEATURES", ["x11-sato", "dbg-pkgs"], "task-poky-x11-sato-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["x11-sato", "dbg-pkgs"], "task-core-x11-sato-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["x11-sato", "dev-pkgs"], "task-poky-x11-sato-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["x11-sato", "dev-pkgs"], "task-core-x11-sato-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "x11-netbook", "task-poky-x11-netbook", "", d)} \ ${@base_contains("IMAGE_FEATURES", "x11-netbook", "task-core-x11-netbook", "", d)} \
${@base_contains("IMAGE_FEATURES", ["x11-netbook", "dbg-pkgs"], "task-poky-x11-netbook-dbg", "", d)} \ ${@base_contains("IMAGE_FEATURES", ["x11-netbook", "dbg-pkgs"], "task-core-x11-netbook-dbg", "", d)} \
${@base_contains("IMAGE_FEATURES", ["x11-netbook", "dev-pkgs"], "task-poky-x11-netbook-dev", "", d)} \ ${@base_contains("IMAGE_FEATURES", ["x11-netbook", "dev-pkgs"], "task-core-x11-netbook-dev", "", d)} \
${@base_contains("IMAGE_FEATURES", "apps-x11-core", "task-poky-apps-x11-core", "",d)} \ ${@base_contains("IMAGE_FEATURES", "apps-x11-core", "task-core-apps-x11-core", "",d)} \
${@base_contains("IMAGE_FEATURES", ["apps-x11-core", "dbg-pkgs"], "task-poky-apps-x11-core-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["apps-x11-core", "dbg-pkgs"], "task-core-apps-x11-core-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["apps-x11-core", "dev-pkgs"], "task-poky-apps-x11-core-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["apps-x11-core", "dev-pkgs"], "task-core-apps-x11-core-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "apps-x11-games", "task-poky-apps-x11-games", "",d)} \ ${@base_contains("IMAGE_FEATURES", "apps-x11-games", "task-core-apps-x11-games", "",d)} \
${@base_contains("IMAGE_FEATURES", ["apps-x11-games", "dbg-pkgs"], "task-poky-apps-x11-games-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["apps-x11-games", "dbg-pkgs"], "task-core-apps-x11-games-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["apps-x11-games", "dev-pkgs"], "task-poky-apps-x11-games-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["apps-x11-games", "dev-pkgs"], "task-core-apps-x11-games-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "apps-x11-pimlico", "task-poky-apps-x11-pimlico", "",d)} \ ${@base_contains("IMAGE_FEATURES", "apps-x11-pimlico", "task-core-apps-x11-pimlico", "",d)} \
${@base_contains("IMAGE_FEATURES", ["apps-x11-pimlico", "dbg-pkgs"], "task-poky-apps-x11-pimlico-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["apps-x11-pimlico", "dbg-pkgs"], "task-core-apps-x11-pimlico-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["apps-x11-pimlico", "dev-pkgs"], "task-poky-apps-x11-pimlico-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["apps-x11-pimlico", "dev-pkgs"], "task-core-apps-x11-pimlico-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "tools-debug", "task-poky-tools-debug", "",d)} \ ${@base_contains("IMAGE_FEATURES", "tools-debug", "task-core-tools-debug", "",d)} \
${@base_contains("IMAGE_FEATURES", ["tools-debug", "dbg-pkgs"], "task-poky-tools-debug-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["tools-debug", "dbg-pkgs"], "task-core-tools-debug-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["tools-debug", "dev-pkgs"], "task-poky-tools-debug-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["tools-debug", "dev-pkgs"], "task-core-tools-debug-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "tools-profile", "task-poky-tools-profile", "",d)} \ ${@base_contains("IMAGE_FEATURES", "tools-profile", "task-core-tools-profile", "",d)} \
${@base_contains("IMAGE_FEATURES", ["tools-profile", "dbg-pkgs"], "task-poky-tools-profile-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["tools-profile", "dbg-pkgs"], "task-core-tools-profile-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["tools-profile", "dev-pkgs"], "task-poky-tools-profile-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["tools-profile", "dev-pkgs"], "task-core-tools-profile-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "tools-testapps", "task-poky-tools-testapps", "",d)} \ ${@base_contains("IMAGE_FEATURES", "tools-testapps", "task-core-tools-testapps", "",d)} \
${@base_contains("IMAGE_FEATURES", ["tools-testapps", "dbg-pkgs"], "task-poky-tools-testapps-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["tools-testapps", "dbg-pkgs"], "task-core-tools-testapps-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["tools-testapps", "dev-pkgs"], "task-poky-tools-testapps-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["tools-testapps", "dev-pkgs"], "task-core-tools-testapps-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "tools-sdk", "task-poky-sdk task-poky-standalone-sdk-target", "",d)} \ ${@base_contains("IMAGE_FEATURES", "tools-sdk", "task-core-sdk task-core-standalone-sdk-target", "",d)} \
${@base_contains("IMAGE_FEATURES", ["tools-sdk", "dbg-pkgs"], "task-poky-sdk-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["tools-sdk", "dbg-pkgs"], "task-core-sdk-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["tools-sdk", "dev-pkgs"], "task-poky-sdk-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["tools-sdk", "dev-pkgs"], "task-core-sdk-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "nfs-server", "task-poky-nfs-server", "",d)} \ ${@base_contains("IMAGE_FEATURES", "nfs-server", "task-core-nfs-server", "",d)} \
${@base_contains("IMAGE_FEATURES", ["nfs-server", "dbg-pkgs"], "task-poky-nfs-server-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["nfs-server", "dbg-pkgs"], "task-core-nfs-server-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["nfs-server", "dev-pkgs"], "task-poky-nfs-server-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["nfs-server", "dev-pkgs"], "task-core-nfs-server-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "ssh-server-dropbear", "task-poky-ssh-dropbear", "",d)} \ ${@base_contains("IMAGE_FEATURES", "ssh-server-dropbear", "task-core-ssh-dropbear", "",d)} \
${@base_contains("IMAGE_FEATURES", ["ssh-server-dropbear", "dbg-pkgs"], "task-poky-ssh-dropbear-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["ssh-server-dropbear", "dbg-pkgs"], "task-core-ssh-dropbear-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["ssh-server-dropbear", "dev-pkgs"], "task-poky-ssh-dropbear-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["ssh-server-dropbear", "dev-pkgs"], "task-core-ssh-dropbear-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "ssh-server-openssh", "task-poky-ssh-openssh", "",d)} \ ${@base_contains("IMAGE_FEATURES", "ssh-server-openssh", "task-core-ssh-openssh", "",d)} \
${@base_contains("IMAGE_FEATURES", ["ssh-server-openssh", "dbg-pkgs"], "task-poky-ssh-openssh-dbg", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["ssh-server-openssh", "dbg-pkgs"], "task-core-ssh-openssh-dbg", "",d)} \
${@base_contains("IMAGE_FEATURES", ["ssh-server-openssh", "dev-pkgs"], "task-poky-ssh-openssh-dev", "",d)} \ ${@base_contains("IMAGE_FEATURES", ["ssh-server-openssh", "dev-pkgs"], "task-core-ssh-openssh-dev", "",d)} \
\ \
${@base_contains("IMAGE_FEATURES", "package-management", "${ROOTFS_PKGMANAGE}", "${ROOTFS_PKGMANAGE_BOOTSTRAP}",d)} \ ${@base_contains("IMAGE_FEATURES", "package-management", "${ROOTFS_PKGMANAGE}", "${ROOTFS_PKGMANAGE_BOOTSTRAP}",d)} \
${@base_contains("IMAGE_FEATURES", "qt4-pkgs", "task-poky-qt-demos", "",d)} \ ${@base_contains("IMAGE_FEATURES", "qt4-pkgs", "task-core-qt-demos", "",d)} \
${POKY_EXTRA_INSTALL} \ ${POKY_EXTRA_INSTALL} \
' '

View File

@ -8,7 +8,7 @@ SDK_DEPLOY = "${TMPDIR}/deploy/sdk"
SDKTARGETSYSROOT = "${SDKPATH}/sysroots/${TARGET_SYS}" SDKTARGETSYSROOT = "${SDKPATH}/sysroots/${TARGET_SYS}"
TOOLCHAIN_HOST_TASK ?= "task-sdk-host task-cross-canadian-${TRANSLATED_TARGET_ARCH}" TOOLCHAIN_HOST_TASK ?= "task-sdk-host task-cross-canadian-${TRANSLATED_TARGET_ARCH}"
TOOLCHAIN_TARGET_TASK ?= "task-poky-standalone-sdk-target task-poky-standalone-sdk-target-dbg" TOOLCHAIN_TARGET_TASK ?= "task-core-standalone-sdk-target task-core-standalone-sdk-target-dbg"
TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-toolchain-${DISTRO_VERSION}" TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-toolchain-${DISTRO_VERSION}"
RDEPENDS = "${TOOLCHAIN_TARGET_TASK} ${TOOLCHAIN_HOST_TASK}" RDEPENDS = "${TOOLCHAIN_TARGET_TASK} ${TOOLCHAIN_HOST_TASK}"

View File

@ -2283,34 +2283,34 @@ RECIPE_LATEST_RELEASE_DATE_pn-task-base="n/a"
RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-base="n/a" RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-base="n/a"
RECIPE_MAINTAINER_pn-task-base = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-base = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-clutter="green" RECIPE_STATUS_pn-task-core-clutter="green"
RECIPE_LATEST_VERSION_pn-task-poky-clutter="1.0" RECIPE_LATEST_VERSION_pn-task-core-clutter="1.0"
RECIPE_NO_OF_PATCHES_pn-task-poky-clutter="0" RECIPE_NO_OF_PATCHES_pn-task-core-clutter="0"
RECIPE_LATEST_RELEASE_DATE_pn-task-poky-clutter="n/a" RECIPE_LATEST_RELEASE_DATE_pn-task-core-clutter="n/a"
RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-poky-clutter="n/a" RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-core-clutter="n/a"
RECIPE_MAINTAINER_pn-task-poky-clutter = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-clutter = "Dongxiao Xu <dongxiao.xu@intel.com>"
DISTRO_PN_ALIAS_pn-task-poky-clutter = "Poky" DISTRO_PN_ALIAS_pn-task-core-clutter = "Poky"
RECIPE_STATUS_pn-task-poky-boot="green" RECIPE_STATUS_pn-task-core-boot="green"
RECIPE_LATEST_VERSION_pn-task-poky-boot="1.0" RECIPE_LATEST_VERSION_pn-task-core-boot="1.0"
RECIPE_NO_OF_PATCHES_pn-task-poky-boot="0" RECIPE_NO_OF_PATCHES_pn-task-core-boot="0"
RECIPE_LATEST_RELEASE_DATE_pn-task-poky-boot="n/a" RECIPE_LATEST_RELEASE_DATE_pn-task-core-boot="n/a"
RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-poky-boot="n/a" RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-core-boot="n/a"
RECIPE_MAINTAINER_pn-task-poky-boot = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-boot = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-nfs="green" RECIPE_STATUS_pn-task-core-nfs="green"
RECIPE_LATEST_VERSION_pn-task-poky-nfs="1.0" RECIPE_LATEST_VERSION_pn-task-core-nfs="1.0"
RECIPE_NO_OF_PATCHES_pn-task-poky-nfs="0" RECIPE_NO_OF_PATCHES_pn-task-core-nfs="0"
RECIPE_LATEST_RELEASE_DATE_pn-task-poky-nfs="n/a" RECIPE_LATEST_RELEASE_DATE_pn-task-core-nfs="n/a"
RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-poky-nfs="n/a" RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-core-nfs="n/a"
RECIPE_MAINTAINER_pn-task-poky-nfs = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-nfs = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-tools="green" RECIPE_STATUS_pn-task-core-tools="green"
RECIPE_LATEST_VERSION_pn-task-poky-tools="1.0" RECIPE_LATEST_VERSION_pn-task-core-tools="1.0"
RECIPE_NO_OF_PATCHES_pn-task-poky-tools="0" RECIPE_NO_OF_PATCHES_pn-task-core-tools="0"
RECIPE_LATEST_RELEASE_DATE_pn-task-poky-tools="n/a" RECIPE_LATEST_RELEASE_DATE_pn-task-core-tools="n/a"
RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-poky-tools="n/a" RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-core-tools="n/a"
RECIPE_MAINTAINER_pn-task-poky-tools = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-tools = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-gst-meta-base="green" RECIPE_STATUS_pn-gst-meta-base="green"
DISTRO_PN_ALIAS_pn-gst-meta-base = "Meego=gstreamer Fedora=gstreamer OpenSuSE=gstreamer Ubuntu=gstreamer0.10 Mandriva=gstreamer0.10 Debian=gstreamer0.10" DISTRO_PN_ALIAS_pn-gst-meta-base = "Meego=gstreamer Fedora=gstreamer OpenSuSE=gstreamer Ubuntu=gstreamer0.10 Mandriva=gstreamer0.10 Debian=gstreamer0.10"
@ -2320,19 +2320,19 @@ RECIPE_LATEST_RELEASE_DATE_pn-gst-meta-base="n/a"
RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-gst-meta-base="n/a" RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-gst-meta-base="n/a"
RECIPE_MAINTAINER_pn-gst-meta-base = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-gst-meta-base = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-apps-x11-pimlico="green" RECIPE_STATUS_pn-task-core-apps-x11-pimlico="green"
RECIPE_LATEST_VERSION_pn-task-poky-apps-x11-pimlico="1.0" RECIPE_LATEST_VERSION_pn-task-core-apps-x11-pimlico="1.0"
RECIPE_NO_OF_PATCHES_pn-task-poky-apps-x11-pimlico="0" RECIPE_NO_OF_PATCHES_pn-task-core-apps-x11-pimlico="0"
RECIPE_LATEST_RELEASE_DATE_pn-task-poky-apps-x11-pimlico="n/a" RECIPE_LATEST_RELEASE_DATE_pn-task-core-apps-x11-pimlico="n/a"
RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-poky-apps-x11-pimlico="n/a" RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-core-apps-x11-pimlico="n/a"
RECIPE_MAINTAINER_pn-task-poky-apps-x11-pimlico = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-apps-x11-pimlico = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-x11-sato="green" RECIPE_STATUS_pn-task-core-x11-sato="green"
RECIPE_LATEST_VERSION_pn-task-poky-x11-sato="1.0" RECIPE_LATEST_VERSION_pn-task-core-x11-sato="1.0"
RECIPE_NO_OF_PATCHES_pn-task-poky-x11-sato="0" RECIPE_NO_OF_PATCHES_pn-task-core-x11-sato="0"
RECIPE_LATEST_RELEASE_DATE_pn-task-poky-x11-sato="n/a" RECIPE_LATEST_RELEASE_DATE_pn-task-core-x11-sato="n/a"
RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-poky-x11-sato="n/a" RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-task-core-x11-sato="n/a"
RECIPE_MAINTAINER_pn-task-poky-x11-sato = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-x11-sato = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-enchant="green" RECIPE_STATUS_pn-enchant="green"
RECIPE_LATEST_VERSION_pn-enchant="1.6.0" RECIPE_LATEST_VERSION_pn-enchant="1.6.0"
@ -2342,21 +2342,21 @@ RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-enchant="10 months"
RECIPE_LAST_UPDATE_pn-enchant = "Aug 4, 2010" RECIPE_LAST_UPDATE_pn-enchant = "Aug 4, 2010"
RECIPE_MAINTAINER_pn-enchant = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-enchant = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-sdk = "red" RECIPE_STATUS_pn-task-core-sdk = "red"
RECIPE_LATEST_VERSION_pn-task-poky-sdk = "1.0" RECIPE_LATEST_VERSION_pn-task-core-sdk = "1.0"
RECIPE_MAINTAINER_pn-task-poky-sdk = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-sdk = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-sdk-gmae = "red" RECIPE_STATUS_pn-task-core-sdk-gmae = "red"
RECIPE_LATEST_VERSION_pn-task-poky-sdk-gmae = "1.0" RECIPE_LATEST_VERSION_pn-task-core-sdk-gmae = "1.0"
RECIPE_MAINTAINER_pn-task-poky-sdk-gmae = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-sdk-gmae = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-standalone-gmae-sdk-target = "red" RECIPE_STATUS_pn-task-core-standalone-gmae-sdk-target = "red"
RECIPE_LATEST_VERSION_pn-task-poky-standalone-gmae-sdk-target = "1.0" RECIPE_LATEST_VERSION_pn-task-core-standalone-gmae-sdk-target = "1.0"
RECIPE_MAINTAINER_pn-task-poky-standalone-gmae-sdk-target = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-standalone-gmae-sdk-target = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-standalone-sdk-target = "red" RECIPE_STATUS_pn-task-core-standalone-sdk-target = "red"
RECIPE_LATEST_VERSION_pn-task-poky-standalone-sdk-target = "1.0" RECIPE_LATEST_VERSION_pn-task-core-standalone-sdk-target = "1.0"
RECIPE_MAINTAINER_pn-task-poky-standalone-sdk-target = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-standalone-sdk-target = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-xournal = "red" RECIPE_STATUS_pn-xournal = "red"
RECIPE_LATEST_VERSION_pn-xournal = "0.4.5" RECIPE_LATEST_VERSION_pn-xournal = "0.4.5"
@ -2368,88 +2368,88 @@ RECIPE_LATEST_VERSION_pn-wv = "1.2.1"
RECIPE_LAST_UPDATE_pn-wv = "Jan 12, 2007" RECIPE_LAST_UPDATE_pn-wv = "Jan 12, 2007"
RECIPE_MAINTAINER_pn-wv = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-wv = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-minimal = "green" RECIPE_STATUS_pn-core-image-minimal = "green"
RECIPE_LATEST_VERSION_pn-poky-image-minimal = "1.0" RECIPE_LATEST_VERSION_pn-core-image-minimal = "1.0"
RECIPE_MAINTAINER_pn-poky-image-minimal = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-minimal = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-minimal-directdisk = "green" RECIPE_STATUS_pn-core-image-minimal-directdisk = "green"
RECIPE_LATEST_VERSION_pn-poky-image-minimal-directdisk = "1.0" RECIPE_LATEST_VERSION_pn-core-image-minimal-directdisk = "1.0"
RECIPE_MAINTAINER_pn-poky-image-minimal-directdisk = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-minimal-directdisk = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-minimal-initramfs = "green" RECIPE_STATUS_pn-core-image-minimal-initramfs = "green"
RECIPE_LATEST_VERSION_pn-poky-image-minimal-initramfs = "1.0" RECIPE_LATEST_VERSION_pn-core-image-minimal-initramfs = "1.0"
RECIPE_MAINTAINER_pn-poky-image-minimal-initramfs = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-minimal-initramfs = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-minimal-live = "green" RECIPE_STATUS_pn-core-image-minimal-live = "green"
RECIPE_LATEST_VERSION_pn-poky-image-minimal-live = "1.0" RECIPE_LATEST_VERSION_pn-core-image-minimal-live = "1.0"
RECIPE_MAINTAINER_pn-poky-image-minimal-live = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-minimal-live = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-minimal-mtdutils = "green" RECIPE_STATUS_pn-core-image-minimal-mtdutils = "green"
RECIPE_LATEST_VERSION_pn-poky-image-minimal-mtdutils = "1.0" RECIPE_LATEST_VERSION_pn-core-image-minimal-mtdutils = "1.0"
RECIPE_MAINTAINER_pn-poky-image-minimal-mtdutils = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-minimal-mtdutils = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-basic = "green" RECIPE_STATUS_pn-core-image-basic = "green"
RECIPE_LATEST_VERSION_pn-poky-image-basic = "1.0" RECIPE_LATEST_VERSION_pn-core-image-basic = "1.0"
RECIPE_MAINTAINER_pn-poky-image-basic = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-basic = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-sato = "green" RECIPE_STATUS_pn-core-image-sato = "green"
RECIPE_LATEST_VERSION_pn-poky-image-sato = "1.0" RECIPE_LATEST_VERSION_pn-core-image-sato = "1.0"
RECIPE_MAINTAINER_pn-poky-image-sato = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-sato = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-sato-directdisk = "green" RECIPE_STATUS_pn-core-image-sato-directdisk = "green"
RECIPE_LATEST_VERSION_pn-poky-image-sato-directdisk = "1.0" RECIPE_LATEST_VERSION_pn-core-image-sato-directdisk = "1.0"
RECIPE_MAINTAINER_pn-poky-image-sato-directdisk = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-sato-directdisk = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-sato-live = "green" RECIPE_STATUS_pn-core-image-sato-live = "green"
RECIPE_LATEST_VERSION_pn-poky-image-sato-live = "1.0" RECIPE_LATEST_VERSION_pn-core-image-sato-live = "1.0"
RECIPE_MAINTAINER_pn-poky-image-sato-live = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-sato-live = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-lsb = "green" RECIPE_STATUS_pn-core-image-lsb = "green"
RECIPE_LATEST_VERSION_pn-poky-image-lsb = "1.0" RECIPE_LATEST_VERSION_pn-core-image-lsb = "1.0"
RECIPE_MAINTAINER_pn-poky-image-lsb = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-lsb = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-sato-image-sdk = "green" RECIPE_STATUS_pn-poky-sato-image-sdk = "green"
RECIPE_LATEST_VERSION_pn-poky-image-sato-sdk = "1.0" RECIPE_LATEST_VERSION_pn-core-image-sato-sdk = "1.0"
RECIPE_MAINTAINER_pn-poky-image-sato-sdk = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-sato-sdk = "Dongxiao Xu <dongxiao.xu@intel.com>"
DISTRO_PN_ALIAS_pn-poky-image-sdk = "Poky" DISTRO_PN_ALIAS_pn-core-image-sdk = "Poky"
RECIPE_STATUS_pn-task-poky = "green" RECIPE_STATUS_pn-task-poky = "green"
RECIPE_LATEST_VERSION_pn-task-poky = "1.0" RECIPE_LATEST_VERSION_pn-task-poky = "1.0"
RECIPE_MAINTAINER_pn-task-poky = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-poky = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-basic = "green" RECIPE_STATUS_pn-task-core-basic = "green"
RECIPE_LATEST_VERSION_pn-task-poky-basic = "1.0" RECIPE_LATEST_VERSION_pn-task-core-basic = "1.0"
RECIPE_MAINTAINER_pn-task-poky-basic = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-basic = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-lsb = "green" RECIPE_STATUS_pn-task-core-lsb = "green"
RECIPE_LATEST_VERSION_pn-task-poky-lsb = "1.0" RECIPE_LATEST_VERSION_pn-task-core-lsb = "1.0"
RECIPE_MAINTAINER_pn-task-poky-lsb = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-lsb = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-sdk-host = "green" RECIPE_STATUS_pn-task-sdk-host = "green"
RECIPE_LATEST_VERSION_pn-task-sdk-host = "1.0" RECIPE_LATEST_VERSION_pn-task-sdk-host = "1.0"
RECIPE_MAINTAINER_pn-task-sdk-host = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-sdk-host = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-task-poky-qt = "green" RECIPE_STATUS_pn-task-core-qt = "green"
RECIPE_LATEST_VERSION_pn-task-poky-qt = "1.0" RECIPE_LATEST_VERSION_pn-task-core-qt = "1.0"
RECIPE_MAINTAINER_pn-task-poky-qt = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-task-core-qt = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-base = "green" RECIPE_STATUS_pn-core-image-base = "green"
RECIPE_LATEST_VERSION_pn-poky-image-base = "1.0" RECIPE_LATEST_VERSION_pn-core-image-base = "1.0"
RECIPE_MAINTAINER_pn-poky-image-base = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-base = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-core = "green" RECIPE_STATUS_pn-core-image-core = "green"
RECIPE_LATEST_VERSION_pn-poky-image-core = "1.0" RECIPE_LATEST_VERSION_pn-core-image-core = "1.0"
RECIPE_MAINTAINER_pn-poky-image-core = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-core = "Dongxiao Xu <dongxiao.xu@intel.com>"
RECIPE_STATUS_pn-poky-image-sato-sdk-live = "green" RECIPE_STATUS_pn-core-image-sato-sdk-live = "green"
RECIPE_LATEST_VERSION_pn-poky-image-sato-sdk-live = "1.0" RECIPE_LATEST_VERSION_pn-core-image-sato-sdk-live = "1.0"
RECIPE_MAINTAINER_pn-poky-image-sato-sdk-live = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-sato-sdk-live = "Dongxiao Xu <dongxiao.xu@intel.com>"
DISTRO_PN_ALIAS_pn-poky-image-sato-sdk-live = "Poky" DISTRO_PN_ALIAS_pn-core-image-sato-sdk-live = "Poky"
RECIPE_STATUS_pn-poky-image-sato-sdk-directdisk = "green" RECIPE_STATUS_pn-core-image-sato-sdk-directdisk = "green"
RECIPE_LATEST_VERSION_pn-poky-image-sato-sdk-directdisk = "1.0" RECIPE_LATEST_VERSION_pn-core-image-sato-sdk-directdisk = "1.0"
RECIPE_MAINTAINER_pn-poky-image-sato-sdk-directdisk = "Dongxiao Xu <dongxiao.xu@intel.com>" RECIPE_MAINTAINER_pn-core-image-sato-sdk-directdisk = "Dongxiao Xu <dongxiao.xu@intel.com>"
DISTRO_PN_ALIAS_pn-poky-image-sato-sdk-directdisk = "Poky" DISTRO_PN_ALIAS_pn-core-image-sato-sdk-directdisk = "Poky"
RECIPE_STATUS_pn-liba52="yellow" # patch investigation needed RECIPE_STATUS_pn-liba52="yellow" # patch investigation needed
DISTRO_PN_ALIAS_pn-liba52 = "Mandriva=a52dec Debian=a52dec" DISTRO_PN_ALIAS_pn-liba52 = "Mandriva=a52dec Debian=a52dec"
@ -5361,31 +5361,31 @@ RECIPE_LAST_UPDATE_pn-mutter = "Jan 13, 2010"
RECIPE_MAINTAINER_pn-mutter = "Edwin Zhai <edwin.zhai@intel.com>" RECIPE_MAINTAINER_pn-mutter = "Edwin Zhai <edwin.zhai@intel.com>"
DISTRO_PN_ALIAS_pn-poky-feed-config-opkg = "Poky" DISTRO_PN_ALIAS_pn-poky-feed-config-opkg = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-base = "Poky" DISTRO_PN_ALIAS_pn-core-image-base = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-basic = "Poky" DISTRO_PN_ALIAS_pn-core-image-basic = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-core = "Poky" DISTRO_PN_ALIAS_pn-core-image-core = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-lsb = "Poky" DISTRO_PN_ALIAS_pn-core-image-lsb = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-minimal = "Poky" DISTRO_PN_ALIAS_pn-core-image-minimal = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-minimal-directdisk = "Poky" DISTRO_PN_ALIAS_pn-core-image-minimal-directdisk = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-minimal-initramfs = "Poky" DISTRO_PN_ALIAS_pn-core-image-minimal-initramfs = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-minimal-live = "Poky" DISTRO_PN_ALIAS_pn-core-image-minimal-live = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-minimal-mtdutils = "Poky" DISTRO_PN_ALIAS_pn-core-image-minimal-mtdutils = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-sato = "Poky" DISTRO_PN_ALIAS_pn-core-image-sato = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-sato-directdisk = "Poky" DISTRO_PN_ALIAS_pn-core-image-sato-directdisk = "Poky"
DISTRO_PN_ALIAS_pn-poky-image-sato-live = "Poky" DISTRO_PN_ALIAS_pn-core-image-sato-live = "Poky"
DISTRO_PN_ALIAS_pn-task-poky = "Poky" DISTRO_PN_ALIAS_pn-task-poky = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-apps-x11-pimlico = "Poky" DISTRO_PN_ALIAS_pn-task-core-apps-x11-pimlico = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-basic = "Poky" DISTRO_PN_ALIAS_pn-task-core-basic = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-boot = "Poky" DISTRO_PN_ALIAS_pn-task-core-boot = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-lsb = "Poky" DISTRO_PN_ALIAS_pn-task-core-lsb = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-nfs = "Poky" DISTRO_PN_ALIAS_pn-task-core-nfs = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-qt = "Poky" DISTRO_PN_ALIAS_pn-task-core-qt = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-sdk = "Poky" DISTRO_PN_ALIAS_pn-task-core-sdk = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-sdk-gmae = "Poky" DISTRO_PN_ALIAS_pn-task-core-sdk-gmae = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-standalone-gmae-sdk-target = "Poky" DISTRO_PN_ALIAS_pn-task-core-standalone-gmae-sdk-target = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-standalone-sdk-target = "Poky" DISTRO_PN_ALIAS_pn-task-core-standalone-sdk-target = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-tools = "Poky" DISTRO_PN_ALIAS_pn-task-core-tools = "Poky"
DISTRO_PN_ALIAS_pn-task-poky-x11-sato = "Poky" DISTRO_PN_ALIAS_pn-task-core-x11-sato = "Poky"
DISTRO_PN_ALIAS_pn-initramfs-boot = "Poky" DISTRO_PN_ALIAS_pn-initramfs-boot = "Poky"
DISTRO_PN_ALIAS_pn-initramfs-live-boot = "Poky" DISTRO_PN_ALIAS_pn-initramfs-live-boot = "Poky"
DISTRO_PN_ALIAS_pn-initramfs-live-install = "Poky" DISTRO_PN_ALIAS_pn-initramfs-live-install = "Poky"
@ -5452,8 +5452,8 @@ RECIPE_STATUS_pn-moblin-proto = "red"
DISTRO_PN_ALIAS_pn-moblin-proto = "Poky" DISTRO_PN_ALIAS_pn-moblin-proto = "Poky"
RECIPE_STATUS_pn-package-index = "red" RECIPE_STATUS_pn-package-index = "red"
DISTRO_PN_ALIAS_pn-package-index = "Poky" DISTRO_PN_ALIAS_pn-package-index = "Poky"
RECIPE_STATUS_pn-poky-image-clutter = "red" RECIPE_STATUS_pn-core-image-clutter = "red"
DISTRO_PN_ALIAS_pn-poky-image-clutter = "Poky" DISTRO_PN_ALIAS_pn-core-image-clutter = "Poky"
RECIPE_STATUS_pn-prism-firmware = "red" RECIPE_STATUS_pn-prism-firmware = "red"
RECIPE_STATUS_pn-run-postinsts = "red" RECIPE_STATUS_pn-run-postinsts = "red"
DISTRO_PN_ALIAS_pn-run-postinsts = "Poky" DISTRO_PN_ALIAS_pn-run-postinsts = "Poky"

View File

@ -3,7 +3,7 @@ DESCRIPTION = "Adds scripts to use distcc on the host system under qemu"
LICENSE = "GPL" LICENSE = "GPL"
LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe" LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
RDEPENDS_${PN} = "distcc task-poky-nfs-server oprofileui-server rsync bash" RDEPENDS_${PN} = "distcc task-core-nfs-server oprofileui-server rsync bash"
PR = "r19" PR = "r19"
SRC_URI = "file://distcc.sh \ SRC_URI = "file://distcc.sh \

View File

@ -1,5 +1,5 @@
AUTO_SYSLINUXCFG = "1" AUTO_SYSLINUXCFG = "1"
INITRD = "${DEPLOY_DIR_IMAGE}/poky-image-minimal-initramfs-${MACHINE}.cpio.gz" INITRD = "${DEPLOY_DIR_IMAGE}/core-image-minimal-initramfs-${MACHINE}.cpio.gz"
APPEND += "root=/dev/ram0 " APPEND += "root=/dev/ram0 "
TIMEOUT = "10" TIMEOUT = "10"
@ -8,7 +8,7 @@ EXCLUDE_FROM_WORLD = "1"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
do_bootimg[depends] += "poky-image-minimal-initramfs:do_rootfs" do_bootimg[depends] += "core-image-minimal-initramfs:do_rootfs"
inherit bootimg inherit bootimg

View File

@ -1,7 +1,7 @@
# #
# Copyright (C) 2007 OpenedHand Ltd. # Copyright (C) 2007 OpenedHand Ltd.
# #
IMAGE_INSTALL = "task-poky-boot ${ROOTFS_PKGMANAGE}" IMAGE_INSTALL = "task-core-boot ${ROOTFS_PKGMANAGE}"
IMAGE_FEATURES += "dev-pkgs" IMAGE_FEATURES += "dev-pkgs"

View File

@ -0,0 +1,11 @@
require core-image-directdisk.inc
DESCRIPTION = "Minimal Bootable Direct Disk Image"
ROOTFS = "${DEPLOY_DIR_IMAGE}/core-image-minimal-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootdirectdisk[depends] += "core-image-minimal:do_rootfs"

View File

@ -2,7 +2,7 @@
IMAGE_INSTALL = "initramfs-live-boot initramfs-live-install busybox udev base-passwd" IMAGE_INSTALL = "initramfs-live-boot initramfs-live-install busybox udev base-passwd"
export IMAGE_BASENAME = "poky-image-minimal-initramfs" export IMAGE_BASENAME = "core-image-minimal-initramfs"
IMAGE_LINGUAS = "" IMAGE_LINGUAS = ""
LICENSE = "MIT" LICENSE = "MIT"

View File

@ -0,0 +1,11 @@
DESCRIPTION = "Minimal Bootable Live Image"
require core-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/core-image-minimal-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "core-image-minimal:do_rootfs"

View File

@ -1,6 +1,6 @@
# #
# Copyright (C) 2008 OpenedHand Ltd. # Copyright (C) 2008 OpenedHand Ltd.
# #
require poky-image-minimal.bb require core-image-minimal.bb
IMAGE_INSTALL += "mtd-utils" IMAGE_INSTALL += "mtd-utils"

View File

@ -1,7 +1,7 @@
# #
# Copyright (C) 2007 OpenedHand Ltd. # Copyright (C) 2007 OpenedHand Ltd.
# #
IMAGE_INSTALL = "task-poky-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP}" IMAGE_INSTALL = "task-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP}"
IMAGE_LINGUAS = " " IMAGE_LINGUAS = " "

View File

@ -1,11 +0,0 @@
require poky-image-directdisk.inc
DESCRIPTION = "Minimal Bootable Direct Disk Image"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-minimal-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootdirectdisk[depends] += "poky-image-minimal:do_rootfs"

View File

@ -1,11 +0,0 @@
DESCRIPTION = "Minimal Bootable Live Image"
require poky-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-minimal-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "poky-image-minimal:do_rootfs"

View File

@ -1,4 +1,4 @@
TOOLCHAIN_TARGET_GMAETASK ?= "task-poky-standalone-gmae-sdk-target task-poky-standalone-gmae-sdk-target-dbg" TOOLCHAIN_TARGET_GMAETASK ?= "task-core-standalone-gmae-sdk-target task-core-standalone-gmae-sdk-target-dbg"
TOOLCHAIN_TARGET_TASK = "${TOOLCHAIN_TARGET_GMAETASK}" TOOLCHAIN_TARGET_TASK = "${TOOLCHAIN_TARGET_GMAETASK}"
TOOLCHAIN_OUTPUTNAME = "${SDK_NAME}-toolchain-gmae-${DISTRO_VERSION}" TOOLCHAIN_OUTPUTNAME = "${SDK_NAME}-toolchain-gmae-${DISTRO_VERSION}"
PROVIDES = "meta-toolchain-sdk" PROVIDES = "meta-toolchain-sdk"

View File

@ -17,7 +17,7 @@ PR = "r7"
MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= "" MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= ""
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= "" MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= ""
RDEPENDS_task-poky-boot = "\ RDEPENDS_task-core-boot = "\
base-files \ base-files \
base-passwd \ base-passwd \
busybox \ busybox \
@ -31,5 +31,5 @@ RDEPENDS_task-poky-boot = "\
${VIRTUAL-RUNTIME_update-alternatives} \ ${VIRTUAL-RUNTIME_update-alternatives} \
${MACHINE_ESSENTIAL_EXTRA_RDEPENDS}" ${MACHINE_ESSENTIAL_EXTRA_RDEPENDS}"
RRECOMMENDS_task-poky-boot = "\ RRECOMMENDS_task-core-boot = "\
${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS}" ${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS}"

View File

@ -9,18 +9,18 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
PR = "r0" PR = "r0"
PACKAGES = "\ PACKAGES = "\
task-poky-nfs-server \ task-core-nfs-server \
task-poky-nfs-server-dbg \ task-core-nfs-server-dbg \
task-poky-nfs-server-dev \ task-core-nfs-server-dev \
" "
ALLOW_EMPTY = "1" ALLOW_EMPTY = "1"
RDEPENDS_task-poky-nfs-server = "\ RDEPENDS_task-core-nfs-server = "\
nfs-utils" nfs-utils"
# rpcinfo can be useful but only with glibc images # rpcinfo can be useful but only with glibc images
GLIBC_DEPENDENCIES = "glibc-utils" GLIBC_DEPENDENCIES = "glibc-utils"
RRECOMMENDS_task-poky-nfs-server_append_linux = "${GLIBC_DEPENDENCIES}" RRECOMMENDS_task-core-nfs-server_append_linux = "${GLIBC_DEPENDENCIES}"
RRECOMMENDS_task-poky-nfs-server_append_linux-gnueabi = "${GLIBC_DEPENDENCIES}" RRECOMMENDS_task-core-nfs-server_append_linux-gnueabi = "${GLIBC_DEPENDENCIES}"

View File

@ -13,11 +13,11 @@ ALLOW_EMPTY = "1"
#PACKAGEFUNCS =+ 'generate_sdk_pkgs' #PACKAGEFUNCS =+ 'generate_sdk_pkgs'
PACKAGES = "\ PACKAGES = "\
task-poky-sdk \ task-core-sdk \
task-poky-sdk-dbg \ task-core-sdk-dbg \
task-poky-sdk-dev" task-core-sdk-dev"
RDEPENDS_task-poky-sdk = "\ RDEPENDS_task-core-sdk = "\
autoconf \ autoconf \
automake \ automake \
binutils \ binutils \
@ -51,7 +51,7 @@ RDEPENDS_task-poky-sdk = "\
# poky_pkgs = read_pkgdata('task-poky', d)['PACKAGES'] # poky_pkgs = read_pkgdata('task-poky', d)['PACKAGES']
# pkgs = bb.data.getVar('PACKAGES', d, 1).split() # pkgs = bb.data.getVar('PACKAGES', d, 1).split()
# for pkg in poky_pkgs.split(): # for pkg in poky_pkgs.split():
# newpkg = pkg.replace('task-poky', 'task-poky-sdk') # newpkg = pkg.replace('task-poky', 'task-core-sdk')
# #
# # for each of the task packages, add a corresponding sdk task # # for each of the task packages, add a corresponding sdk task
# pkgs.append(newpkg) # pkgs.append(newpkg)
@ -86,4 +86,4 @@ RDEPENDS_task-poky-sdk = "\
# bb.data.setVar('PACKAGES', ' '.join(pkgs), d) # bb.data.setVar('PACKAGES', ' '.join(pkgs), d)
#} #}
# #
#PACKAGES_DYNAMIC = "task-poky-sdk-*" #PACKAGES_DYNAMIC = "task-core-sdk-*"

View File

@ -5,13 +5,13 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
PR = "r0" PR = "r0"
PACKAGES = "\ PACKAGES = "\
task-poky-ssh-dropbear \ task-core-ssh-dropbear \
task-poky-ssh-dropbear-dbg \ task-core-ssh-dropbear-dbg \
task-poky-ssh-dropbear-dev \ task-core-ssh-dropbear-dev \
" "
ALLOW_EMPTY = "1" ALLOW_EMPTY = "1"
RDEPENDS_task-poky-ssh-dropbear = "dropbear" RDEPENDS_task-core-ssh-dropbear = "dropbear"
RDEPENDS_task-poky-ssh-dropbear-dbg = "dropbear-dbg" RDEPENDS_task-core-ssh-dropbear-dbg = "dropbear-dbg"
RDEPENDS_task-poky-ssh-dropbear-dev = "dropbear-dev" RDEPENDS_task-core-ssh-dropbear-dev = "dropbear-dev"

View File

@ -5,13 +5,13 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
PR = "r0" PR = "r0"
PACKAGES = "\ PACKAGES = "\
task-poky-ssh-openssh \ task-core-ssh-openssh \
task-poky-ssh-openssh-dbg \ task-core-ssh-openssh-dbg \
task-poky-ssh-openssh-dev \ task-core-ssh-openssh-dev \
" "
ALLOW_EMPTY = "1" ALLOW_EMPTY = "1"
RDEPENDS_task-poky-ssh-openssh = "openssh" RDEPENDS_task-core-ssh-openssh = "openssh"
RDEPENDS_task-poky-ssh-openssh-dbg = "openssh-dbg" RDEPENDS_task-core-ssh-openssh-dbg = "openssh-dbg"
RDEPENDS_task-poky-ssh-openssh-dev = "openssh-dev" RDEPENDS_task-core-ssh-openssh-dev = "openssh-dev"

View File

@ -9,15 +9,15 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
PR = "r8" PR = "r8"
PACKAGES = "\ PACKAGES = "\
task-poky-tools-debug \ task-core-tools-debug \
task-poky-tools-debug-dbg \ task-core-tools-debug-dbg \
task-poky-tools-debug-dev \ task-core-tools-debug-dev \
task-poky-tools-profile \ task-core-tools-profile \
task-poky-tools-profile-dbg \ task-core-tools-profile-dbg \
task-poky-tools-profile-dev \ task-core-tools-profile-dev \
task-poky-tools-testapps \ task-core-tools-testapps \
task-poky-tools-testapps-dbg \ task-core-tools-testapps-dbg \
task-poky-tools-testapps-dev \ task-core-tools-testapps-dev \
" "
PACKAGE_ARCH = "${MACHINE_ARCH}" PACKAGE_ARCH = "${MACHINE_ARCH}"
@ -30,14 +30,14 @@ KEXECTOOLS_mips ?= ""
KEXECTOOLS_mipsel ?= "" KEXECTOOLS_mipsel ?= ""
KEXECTOOLS_powerpc ?= "" KEXECTOOLS_powerpc ?= ""
RDEPENDS_task-poky-tools-debug = "\ RDEPENDS_task-core-tools-debug = "\
gdb \ gdb \
gdbserver \ gdbserver \
tcf-agent \ tcf-agent \
rsync \ rsync \
strace" strace"
RDEPENDS_task-poky-tools-profile = "\ RDEPENDS_task-core-tools-profile = "\
oprofile \ oprofile \
oprofileui-server \ oprofileui-server \
powertop \ powertop \
@ -45,7 +45,7 @@ RDEPENDS_task-poky-tools-profile = "\
lttng-control \ lttng-control \
lttng-viewer" lttng-viewer"
RRECOMMENDS_task-poky-tools-profile = "\ RRECOMMENDS_task-core-tools-profile = "\
perf \ perf \
trace-cmd \ trace-cmd \
kernel-module-oprofile \ kernel-module-oprofile \
@ -60,13 +60,13 @@ RRECOMMENDS_task-poky-tools-profile = "\
# qemux86/qemux86-64/qemuppc/emenlow/atom-pc since upstream liburcu # qemux86/qemux86-64/qemuppc/emenlow/atom-pc since upstream liburcu
# (which is required by lttng-ust) may not build on other platforms, like # (which is required by lttng-ust) may not build on other platforms, like
# MIPS and qemu ARMv5te that poky uses now. # MIPS and qemu ARMv5te that poky uses now.
RDEPENDS_task-poky-tools-profile_append_qemux86 = " valgrind lttng-ust systemtap" RDEPENDS_task-core-tools-profile_append_qemux86 = " valgrind lttng-ust systemtap"
RDEPENDS_task-poky-tools-profile_append_qemux86-64 = " lttng-ust systemtap" RDEPENDS_task-core-tools-profile_append_qemux86-64 = " lttng-ust systemtap"
RDEPENDS_task-poky-tools-profile_append_qemuppc = " lttng-ust systemtap" RDEPENDS_task-core-tools-profile_append_qemuppc = " lttng-ust systemtap"
RDEPENDS_task-poky-tools-profile_append_emenlow = " lttng-ust systemtap" RDEPENDS_task-core-tools-profile_append_emenlow = " lttng-ust systemtap"
RDEPENDS_task-poky-tools-profile_append_atom-pc = " lttng-ust systemtap" RDEPENDS_task-core-tools-profile_append_atom-pc = " lttng-ust systemtap"
RDEPENDS_task-poky-tools-testapps = "\ RDEPENDS_task-core-tools-testapps = "\
blktool \ blktool \
fstests \ fstests \
tslib-calibrate \ tslib-calibrate \

View File

@ -252,8 +252,8 @@ get_qemu_image()
check_result check_result
for image_type in $select_rootfs; do for image_type in $select_rootfs; do
#echo_info "[ADT_INST] Downloading rootfs file: poky-image-$image_type-qemu$1.tar.bz2" #echo_info "[ADT_INST] Downloading rootfs file: core-image-$image_type-qemu$1.tar.bz2"
filename="poky-image-$image_type-qemu$target.tar.bz2" filename="core-image-$image_type-qemu$target.tar.bz2"
download_file qemu$1/$filename download_file qemu$1/$filename
check_result check_result
done done

View File

@ -172,7 +172,7 @@ echo_info "Installing target sysroot for arch: $1, rootfs type: $target_sysroot_
qemu_type=`echo "$1" | sed -e 's/x86_64/x86-64/'` qemu_type=`echo "$1" | sed -e 's/x86_64/x86-64/'`
sysroot_image_name="poky-image-$target_sysroot_image-qemu$qemu_type.tar.bz2" sysroot_image_name="core-image-$target_sysroot_image-qemu$qemu_type.tar.bz2"
#echo_info "Extracting rootfs: $sysroot_image_name, using pseudo..." #echo_info "Extracting rootfs: $sysroot_image_name, using pseudo..."
scripts/extract_rootfs $sysroot_image_name $target_sysroot $POKY_NATIVE_SYSROOT $user_inst_type scripts/extract_rootfs $sysroot_image_name $target_sysroot $POKY_NATIVE_SYSROOT $user_inst_type

View File

@ -1,8 +1,8 @@
IMAGE_FEATURES += "apps-console-core ssh-server-openssh" IMAGE_FEATURES += "apps-console-core ssh-server-openssh"
IMAGE_INSTALL = "\ IMAGE_INSTALL = "\
task-poky-boot \ task-core-boot \
task-poky-basic \ task-core-basic \
" "
# ${POKY_BASE_INSTALL} # ${POKY_BASE_INSTALL}

View File

@ -2,8 +2,8 @@ IMAGE_FEATURES += "apps-console-core dev-pkgs ssh-server-openssh"
IMAGE_INSTALL = "\ IMAGE_INSTALL = "\
${POKY_BASE_INSTALL} \ ${POKY_BASE_INSTALL} \
task-poky-basic \ task-core-basic \
task-poky-lsb \ task-core-lsb \
" "
inherit poky-image inherit poky-image

View File

@ -0,0 +1,11 @@
DESCRIPTION = "LSB Bootable Live Image"
require recipes-core/images/core-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/core-image-lsb-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "core-image-lsb:do_rootfs"

View File

@ -0,0 +1,11 @@
DESCRIPTION = "LSB SDK Bootable Live Image"
require recipes-core/images/core-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/core-image-lsb-sdk-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "core-image-lsb-sdk:do_rootfs"

View File

@ -2,8 +2,8 @@ IMAGE_FEATURES += "apps-console-core tools-debug tools-profile tools-sdk dev-pkg
IMAGE_INSTALL = "\ IMAGE_INSTALL = "\
${POKY_BASE_INSTALL} \ ${POKY_BASE_INSTALL} \
task-poky-basic \ task-core-basic \
task-poky-lsb \ task-core-lsb \
" "
inherit poky-image inherit poky-image

View File

@ -2,8 +2,8 @@ IMAGE_FEATURES += "apps-console-core ssh-server-openssh"
IMAGE_INSTALL = "\ IMAGE_INSTALL = "\
${POKY_BASE_INSTALL} \ ${POKY_BASE_INSTALL} \
task-poky-basic \ task-core-basic \
task-poky-lsb \ task-core-lsb \
" "
inherit poky-image inherit poky-image

View File

@ -1,11 +0,0 @@
DESCRIPTION = "LSB Bootable Live Image"
require recipes-core/images/poky-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-lsb-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "poky-image-lsb:do_rootfs"

View File

@ -1,11 +0,0 @@
DESCRIPTION = "LSB SDK Bootable Live Image"
require recipes-core/images/poky-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-lsb-sdk-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "poky-image-lsb-sdk:do_rootfs"

View File

@ -3,7 +3,7 @@ Configure distro version package
We need to configure a package that the system can use to determine the We need to configure a package that the system can use to determine the
system distribution version. system distribution version.
Hack: for now set to task-poky-rpm. Hack: for now set to task-core-rpm.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
@ -15,7 +15,7 @@ diff -ur git.orig/zypp/ZConfig.cc git/zypp/ZConfig.cc
std::string ZConfig::distroverpkg() const std::string ZConfig::distroverpkg() const
- { return "redhat-release"; } - { return "redhat-release"; }
+ { return "task-poky-rpm"; } + { return "task-core-rpm"; }
/////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////

View File

@ -9,59 +9,59 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
PACKAGES = "\ PACKAGES = "\
task-poky-basic \ task-core-basic \
task-poky-base-utils \ task-core-base-utils \
task-poky-base-utils-dbg \ task-core-base-utils-dbg \
task-poky-base-utils-dev \ task-core-base-utils-dev \
task-poky-basic-libs \ task-core-basic-libs \
task-poky-basic-libs-dbg \ task-core-basic-libs-dbg \
task-poky-basic-libs-dev \ task-core-basic-libs-dev \
task-poky-basic-utils \ task-core-basic-utils \
task-poky-basic-utils-dbg \ task-core-basic-utils-dbg \
task-poky-basic-utils-dev \ task-core-basic-utils-dev \
task-poky-basic-extended \ task-core-basic-extended \
task-poky-basic-extended-dbg \ task-core-basic-extended-dbg \
task-poky-basic-extended-dev \ task-core-basic-extended-dev \
task-poky-dev-utils \ task-core-dev-utils \
task-poky-dev-utils-dbg \ task-core-dev-utils-dbg \
task-poky-dev-utils-dev \ task-core-dev-utils-dev \
task-poky-multiuser \ task-core-multiuser \
task-poky-multiuser-dbg \ task-core-multiuser-dbg \
task-poky-multiuser-dev \ task-core-multiuser-dev \
task-poky-initscripts \ task-core-initscripts \
task-poky-initscripts-dbg \ task-core-initscripts-dbg \
task-poky-initscripts-dev \ task-core-initscripts-dev \
task-poky-rpm \ task-core-rpm \
task-poky-rpm-dbg \ task-core-rpm-dbg \
task-poky-rpm-dev \ task-core-rpm-dev \
task-poky-sys-services \ task-core-sys-services \
task-poky-sys-services-dbg \ task-core-sys-services-dbg \
task-poky-sys-services-dev \ task-core-sys-services-dev \
" "
ALLOW_EMPTY = "1" ALLOW_EMPTY = "1"
RDEPENDS_task-poky-basic = "\ RDEPENDS_task-core-basic = "\
task-poky-base-utils \ task-core-base-utils \
task-poky-basic-libs \ task-core-basic-libs \
task-poky-basic-utils \ task-core-basic-utils \
task-poky-basic-extended \ task-core-basic-extended \
task-poky-dev-utils \ task-core-dev-utils \
task-poky-multiuser \ task-core-multiuser \
task-poky-initscripts \ task-core-initscripts \
task-poky-rpm \ task-core-rpm \
task-poky-sys-services \ task-core-sys-services \
" "
RDEPENDS_task-poky-base-utils = "\ RDEPENDS_task-core-base-utils = "\
busybox \ busybox \
" "
RDEPENDS_task-poky-basic-libs = "\ RDEPENDS_task-core-basic-libs = "\
glib-2.0 \ glib-2.0 \
" "
RDEPENDS_task-poky-basic-utils = "\ RDEPENDS_task-core-basic-utils = "\
bash \ bash \
acl \ acl \
attr \ attr \
@ -92,7 +92,7 @@ RDEPENDS_task-poky-basic-utils = "\
zlib \ zlib \
" "
RDEPENDS_task-poky-basic-extended = "\ RDEPENDS_task-core-basic-extended = "\
iproute2 \ iproute2 \
iputils \ iputils \
iptables \ iptables \
@ -100,7 +100,7 @@ RDEPENDS_task-poky-basic-extended = "\
openssl \ openssl \
" "
RDEPENDS_task-poky-dev-utils = "\ RDEPENDS_task-core-dev-utils = "\
byacc \ byacc \
diffutils \ diffutils \
m4 \ m4 \
@ -108,7 +108,7 @@ RDEPENDS_task-poky-dev-utils = "\
patch \ patch \
" "
RDEPENDS_task-poky-initscripts = "\ RDEPENDS_task-core-initscripts = "\
initscripts \ initscripts \
sysvinit \ sysvinit \
ethtool \ ethtool \
@ -116,7 +116,7 @@ RDEPENDS_task-poky-initscripts = "\
sysklogd \ sysklogd \
" "
RDEPENDS_task-poky-multiuser = "\ RDEPENDS_task-core-multiuser = "\
cracklib \ cracklib \
gzip \ gzip \
libuser \ libuser \
@ -125,13 +125,13 @@ RDEPENDS_task-poky-multiuser = "\
sudo \ sudo \
" "
RDEPENDS_task-poky-rpm = "\ RDEPENDS_task-core-rpm = "\
beecrypt \ beecrypt \
rpm \ rpm \
zypper \ zypper \
" "
RDEPENDS_task-poky-sys-services = "\ RDEPENDS_task-core-sys-services = "\
at \ at \
bzip2 \ bzip2 \
cronie \ cronie \

View File

@ -9,50 +9,50 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
PACKAGES = "\ PACKAGES = "\
task-poky-lsb \ task-core-lsb \
task-poky-sys-extended \ task-core-sys-extended \
task-poky-sys-extended-dbg \ task-core-sys-extended-dbg \
task-poky-sys-extended-dev \ task-core-sys-extended-dev \
task-poky-db \ task-core-db \
task-poky-db-dbg \ task-core-db-dbg \
task-poky-db-dev \ task-core-db-dev \
task-poky-misc \ task-core-misc \
task-poky-misc-dbg \ task-core-misc-dbg \
task-poky-misc-dev \ task-core-misc-dev \
task-poky-perl \ task-core-perl \
task-poky-perl-dbg \ task-core-perl-dbg \
task-poky-perl-dev \ task-core-perl-dev \
task-poky-python \ task-core-python \
task-poky-python-dbg \ task-core-python-dbg \
task-poky-python-dev \ task-core-python-dev \
task-poky-tcl \ task-core-tcl \
task-poky-tcl-dbg \ task-core-tcl-dbg \
task-poky-tcl-dev \ task-core-tcl-dev \
task-poky-lsb-perl-add \ task-core-lsb-perl-add \
task-poky-lsb-python-add \ task-core-lsb-python-add \
task-poky-lsb-graphic-add \ task-core-lsb-graphic-add \
task-poky-lsb-runtime-add \ task-core-lsb-runtime-add \
task-poky-lsb-command-add \ task-core-lsb-command-add \
" "
ALLOW_EMPTY = "1" ALLOW_EMPTY = "1"
RDEPENDS_task-poky-lsb = "\ RDEPENDS_task-core-lsb = "\
task-poky-sys-extended \ task-core-sys-extended \
task-poky-db \ task-core-db \
task-poky-misc \ task-core-misc \
task-poky-perl \ task-core-perl \
task-poky-python \ task-core-python \
task-poky-tcl \ task-core-tcl \
task-poky-lsb-perl-add \ task-core-lsb-perl-add \
task-poky-lsb-python-add \ task-core-lsb-python-add \
task-poky-lsb-graphic-add \ task-core-lsb-graphic-add \
task-poky-lsb-runtime-add \ task-core-lsb-runtime-add \
task-poky-lsb-command-add \ task-core-lsb-command-add \
" "
RDEPENDS_task-poky-sys-extended = "\ RDEPENDS_task-core-sys-extended = "\
binutils \ binutils \
chkconfig \ chkconfig \
curl \ curl \
@ -81,19 +81,19 @@ RDEPENDS_task-poky-sys-extended = "\
zip \ zip \
" "
RDEPENDS_task-poky-db = "\ RDEPENDS_task-core-db = "\
db \ db \
sqlite3 \ sqlite3 \
" "
RDEPENDS_task-poky-perl = "\ RDEPENDS_task-core-perl = "\
gdbm \ gdbm \
perl \ perl \
zlib \ zlib \
" "
RDEPENDS_task-poky-python = "\ RDEPENDS_task-core-python = "\
expat \ expat \
gdbm \ gdbm \
gmp \ gmp \
@ -104,11 +104,11 @@ RDEPENDS_task-poky-python = "\
zip \ zip \
" "
RDEPENDS_task-poky-tcl = "\ RDEPENDS_task-core-tcl = "\
tcl \ tcl \
" "
RDEPENDS_task-poky-misc = "\ RDEPENDS_task-core-misc = "\
elfutils \ elfutils \
gettext \ gettext \
groff \ groff \
@ -124,7 +124,7 @@ RDEPENDS_task-poky-misc = "\
zlib \ zlib \
" "
RDEPENDS_task-poky-lsb-command-add = "\ RDEPENDS_task-core-lsb-command-add = "\
localedef \ localedef \
fontconfig-utils \ fontconfig-utils \
mailx \ mailx \
@ -133,19 +133,19 @@ RDEPENDS_task-poky-lsb-command-add = "\
" "
# cups # cups
RDEPENDS_task-poky-lsb-perl-add = "\ RDEPENDS_task-core-lsb-perl-add = "\
perl-modules \ perl-modules \
perl-dev \ perl-dev \
perl-misc \ perl-misc \
perl-pod \ perl-pod \
" "
RDEPENDS_task-poky-lsb-python-add = "\ RDEPENDS_task-core-lsb-python-add = "\
python-modules \ python-modules \
python-misc \ python-misc \
" "
RDEPENDS_task-poky-lsb-graphic-add = "\ RDEPENDS_task-core-lsb-graphic-add = "\
libqtcore4 \ libqtcore4 \
libqtgui4 \ libqtgui4 \
libqtsql4 \ libqtsql4 \
@ -166,19 +166,19 @@ RDEPENDS_task-poky-lsb-graphic-add = "\
gdk-pixbuf-loader-ani \ gdk-pixbuf-loader-ani \
" "
RDEPENDS_task-poky-lsb-graphic-add_qemux86 = "\ RDEPENDS_task-core-lsb-graphic-add_qemux86 = "\
libqtopengl4 \ libqtopengl4 \
" "
RDEPENDS_task-poky-lsb-graphic-add_atom-pc = "\ RDEPENDS_task-core-lsb-graphic-add_atom-pc = "\
libqtopengl4 \ libqtopengl4 \
" "
RDEPENDS_task-poky-lsb-graphic-add_qemuppc = "\ RDEPENDS_task-core-lsb-graphic-add_qemuppc = "\
libqtopengl4 \ libqtopengl4 \
" "
# mesa-dri # mesa-dri
RDEPENDS_task-poky-lsb-runtime-add = "\ RDEPENDS_task-core-lsb-runtime-add = "\
ldd \ ldd \
pam-plugin-wheel \ pam-plugin-wheel \
e2fsprogs-mke2fs \ e2fsprogs-mke2fs \

View File

@ -15,7 +15,7 @@ require task-sdk-gmae.inc
PACKAGES = "${PN}" PACKAGES = "${PN}"
RDEPENDS_${PN} = "\ RDEPENDS_${PN} = "\
task-poky-sdk \ task-core-sdk \
libglade-dev \ libglade-dev \
${SDK-GMAE} \ ${SDK-GMAE} \
${SDK-EXTRAS}" ${SDK-EXTRAS}"

View File

@ -15,7 +15,7 @@ require task-sdk-gmae.inc
PACKAGES = "${PN} ${PN}-dbg" PACKAGES = "${PN} ${PN}-dbg"
RDEPENDS_${PN} = "\ RDEPENDS_${PN} = "\
task-poky-standalone-sdk-target \ task-core-standalone-sdk-target \
libglade-dev \ libglade-dev \
${SDK-GMAE} \ ${SDK-GMAE} \
${SDK-EXTRAS}" ${SDK-EXTRAS}"

View File

@ -1,4 +1,4 @@
Install example binary needed for poky-image-clutter Install example binary needed for core-image-clutter
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
Index: git/examples/Makefile.am Index: git/examples/Makefile.am

View File

@ -1,4 +1,4 @@
Install the test binary needed for poky-image-clutter Install the test binary needed for core-image-clutter
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>

View File

@ -4,8 +4,8 @@ LICENSE = "MIT"
IMAGE_INSTALL = "\ IMAGE_INSTALL = "\
${POKY_BASE_INSTALL} \ ${POKY_BASE_INSTALL} \
task-poky-clutter-core \ task-core-clutter-core \
task-poky-clutter-tests \ task-core-clutter-tests \
task-poky-clutter-apps" task-core-clutter-apps"
inherit poky-image inherit poky-image

View File

@ -10,27 +10,27 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
PR = "r4" PR = "r4"
PACKAGES = "\ PACKAGES = "\
task-poky-clutter-core \ task-core-clutter-core \
task-poky-clutter-core-dbg \ task-core-clutter-core-dbg \
task-poky-clutter-core-dev \ task-core-clutter-core-dev \
task-poky-clutter-apps \ task-core-clutter-apps \
task-poky-clutter-apps-dbg \ task-core-clutter-apps-dbg \
task-poky-clutter-apps-dev \ task-core-clutter-apps-dev \
task-poky-clutter-tests \ task-core-clutter-tests \
task-poky-clutter-tests-dbg \ task-core-clutter-tests-dbg \
task-poky-clutter-tests-dev \ task-core-clutter-tests-dev \
" "
ALLOW_EMPTY = "1" ALLOW_EMPTY = "1"
RDEPENDS_task-poky-clutter-core = "\ RDEPENDS_task-core-clutter-core = "\
clutter-1.4 \ clutter-1.4 \
clutter-gst-1.4 \ clutter-gst-1.4 \
clutter-gtk-1.4" clutter-gtk-1.4"
RDEPENDS_task-poky-clutter-tests = "\ RDEPENDS_task-core-clutter-tests = "\
clutter-gst-1.4-examples \ clutter-gst-1.4-examples \
clutter-gtk-1.4-examples" clutter-gtk-1.4-examples"
#RDEPENDS_task-poky-clutter-apps = "\ #RDEPENDS_task-core-clutter-apps = "\
# clutter-box2d " # clutter-box2d "

View File

@ -9,9 +9,9 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
PR = "r3" PR = "r3"
PACKAGES = "\ PACKAGES = "\
task-poky-qt-demos \ task-core-qt-demos \
task-poky-qt-demos-dbg \ task-core-qt-demos-dbg \
task-poky-qt-demos-dev \ task-core-qt-demos-dev \
" "
ALLOW_EMPTY = "1" ALLOW_EMPTY = "1"
@ -19,4 +19,4 @@ ALLOW_EMPTY = "1"
QTDEMOS ?= "quicky ${COMMERCIAL_QT} fotowall" QTDEMOS ?= "quicky ${COMMERCIAL_QT} fotowall"
#QTDEMOS_disabled = "fotowall" #QTDEMOS_disabled = "fotowall"
RDEPENDS_task-poky-qt-demos = "${QTDEMOS}" RDEPENDS_task-core-qt-demos = "${QTDEMOS}"

View File

@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
RDEPENDS_${PN} += " \ RDEPENDS_${PN} += " \
task-poky-standalone-sdk-target \ task-core-standalone-sdk-target \
qt4-embedded-mkspecs \ qt4-embedded-mkspecs \
libqt-embeddedmultimedia4-dev \ libqt-embeddedmultimedia4-dev \
libqt-embeddedphonon4-dev \ libqt-embeddedphonon4-dev \

View File

@ -0,0 +1,9 @@
require recipes-core/images/core-image-directdisk.inc
DESCRIPTION = "Sato Direct Disk Image"
LICENSE = "MIT"
ROOTFS = "${DEPLOY_DIR_IMAGE}/core-image-sato-${MACHINE}.ext3"
do_bootdirectdisk[depends] += "core-image-sato:do_rootfs"

View File

@ -0,0 +1,11 @@
DESCRIPTION = "Sato Bootable Live Image"
require recipes-core/images/core-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/core-image-sato-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "core-image-sato:do_rootfs"

View File

@ -0,0 +1,9 @@
require recipes-core/images/core-image-directdisk.inc
DESCRIPTION = "Sato SDK Direct Disk Image"
LICENSE = "MIT"
ROOTFS = "${DEPLOY_DIR_IMAGE}/core-image-sato-sdk-${MACHINE}.ext3"
do_bootdirectdisk[depends] += "core-image-sato-sdk:do_rootfs"

View File

@ -0,0 +1,11 @@
DESCRIPTION = "Bootable Live Sato SDK Image"
require recipes-core/images/core-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/core-image-sato-sdk-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "core-image-sato-sdk:do_rootfs"

View File

@ -1,9 +0,0 @@
require recipes-core/images/poky-image-directdisk.inc
DESCRIPTION = "Sato Direct Disk Image"
LICENSE = "MIT"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-sato-${MACHINE}.ext3"
do_bootdirectdisk[depends] += "poky-image-sato:do_rootfs"

View File

@ -1,11 +0,0 @@
DESCRIPTION = "Sato Bootable Live Image"
require recipes-core/images/poky-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-sato-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "poky-image-sato:do_rootfs"

View File

@ -1,9 +0,0 @@
require recipes-core/images/poky-image-directdisk.inc
DESCRIPTION = "Sato SDK Direct Disk Image"
LICENSE = "MIT"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-sato-sdk-${MACHINE}.ext3"
do_bootdirectdisk[depends] += "poky-image-sato-sdk:do_rootfs"

View File

@ -1,11 +0,0 @@
DESCRIPTION = "Bootable Live Sato SDK Image"
require recipes-core/images/poky-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-sato-sdk-${MACHINE}.ext3"
LICENSE = "MIT"
do_bootimg[depends] += "poky-image-sato-sdk:do_rootfs"

View File

@ -9,9 +9,9 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
PR = "r27" PR = "r27"
PACKAGES = "\ PACKAGES = "\
task-poky-apps-x11-pimlico \ task-core-apps-x11-pimlico \
task-poky-apps-x11-pimlico-dbg \ task-core-apps-x11-pimlico-dbg \
task-poky-apps-x11-pimlico-dev \ task-core-apps-x11-pimlico-dev \
" "
PACKAGE_ARCH = "${MACHINE_ARCH}" PACKAGE_ARCH = "${MACHINE_ARCH}"
@ -25,7 +25,7 @@ WEB ?= ""
#WEB_c7x0 = "" #WEB_c7x0 = ""
#WEB_mx31ads = "" #WEB_mx31ads = ""
RDEPENDS_task-poky-apps-x11-pimlico = "\ RDEPENDS_task-core-apps-x11-pimlico = "\
eds-dbus \ eds-dbus \
contacts \ contacts \
dates \ dates \

View File

@ -9,9 +9,9 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
PR = "r30" PR = "r30"
PACKAGES = "\ PACKAGES = "\
task-poky-x11-sato \ task-core-x11-sato \
task-poky-x11-sato-dbg \ task-core-x11-sato-dbg \
task-poky-x11-sato-dev \ task-core-x11-sato-dev \
" "
PACKAGE_ARCH = "${MACHINE_ARCH}" PACKAGE_ARCH = "${MACHINE_ARCH}"
@ -19,7 +19,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
ALLOW_EMPTY = "1" ALLOW_EMPTY = "1"
NETWORK_MANAGER ?= "connman-gnome" NETWORK_MANAGER ?= "connman-gnome"
RDEPENDS_task-poky-x11-sato = "\ RDEPENDS_task-core-x11-sato = "\
matchbox-desktop \ matchbox-desktop \
matchbox-session-sato \ matchbox-session-sato \
matchbox-keyboard \ matchbox-keyboard \

View File

@ -9,18 +9,18 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3
PR = "r34" PR = "r34"
PACKAGES = "\ PACKAGES = "\
task-poky-apps-console \ task-core-apps-console \
task-poky-apps-console-dbg \ task-core-apps-console-dbg \
task-poky-apps-console-dev \ task-core-apps-console-dev \
task-poky-apps-x11-core \ task-core-apps-x11-core \
task-poky-apps-x11-core-dbg \ task-core-apps-x11-core-dbg \
task-poky-apps-x11-core-dev \ task-core-apps-x11-core-dev \
task-poky-apps-x11-games \ task-core-apps-x11-games \
task-poky-apps-x11-games-dbg \ task-core-apps-x11-games-dbg \
task-poky-apps-x11-games-dev \ task-core-apps-x11-games-dev \
task-poky-x11-base \ task-core-x11-base \
task-poky-x11-base-dbg \ task-core-x11-base-dbg \
task-poky-x11-base-dev \ task-core-x11-base-dev \
" "
PACKAGE_ARCH = "${MACHINE_ARCH}" PACKAGE_ARCH = "${MACHINE_ARCH}"
@ -35,14 +35,14 @@ SPLASH ?= "psplash"
FILEMANAGER ?= "pcmanfm" FILEMANAGER ?= "pcmanfm"
FILEMANAGER_mips ?= "" FILEMANAGER_mips ?= ""
RDEPENDS_task-poky-apps-console = "\ RDEPENDS_task-core-apps-console = "\
avahi-daemon \ avahi-daemon \
dbus \ dbus \
portmap \ portmap \
${SPLASH}" ${SPLASH}"
RDEPENDS_task-poky-x11-base = "\ RDEPENDS_task-core-x11-base = "\
dbus \ dbus \
pointercal \ pointercal \
matchbox-wm \ matchbox-wm \
@ -62,12 +62,12 @@ RDEPENDS_task-poky-x11-base = "\
xrandr" xrandr"
RDEPENDS_task-poky-apps-x11-core = "\ RDEPENDS_task-core-apps-x11-core = "\
leafpad \ leafpad \
${FILEMANAGER} \ ${FILEMANAGER} \
matchbox-terminal \ matchbox-terminal \
screenshot" screenshot"
RDEPENDS_task-poky-apps-x11-games = "\ RDEPENDS_task-core-apps-x11-games = "\
oh-puzzles" oh-puzzles"

View File

@ -60,14 +60,14 @@ ECHO "Enter directory $IMAGE_PATH"
cd $IMAGE_PATH cd $IMAGE_PATH
#get architecture #get architecture
PN=`find . -name poky-image-lsb-${MACHINE_ARCH}\*.rootfs.tar.bz2 -type f | awk -F- 'BEGIN{ max=0;} {if( NR!=0 && $5>max ) max=$5 }END{ printf "%d" ,max ;}'` PN=`find . -name core-image-lsb-${MACHINE_ARCH}\*.rootfs.tar.bz2 -type f | awk -F- 'BEGIN{ max=0;} {if( NR!=0 && $5>max ) max=$5 }END{ printf "%d" ,max ;}'`
if [ "XPN" == "X" ];then if [ "XPN" == "X" ];then
ECHO "${red}Don't find lsb image on platform, Please run \"poky-image-lsb\" to generate lsb image" ECHO "${red}Don't find lsb image on platform, Please run \"core-image-lsb\" to generate lsb image"
exit 1 exit 1
fi fi
if [ $PN -eq 0 ];then if [ $PN -eq 0 ];then
ECHO "${red}Can't ${MACHINE_ARCH} rootfs.tar.gz,Please run poky-image-lsb to get lsb image" ECHO "${red}Can't ${MACHINE_ARCH} rootfs.tar.gz,Please run core-image-lsb to get lsb image"
exit 1 exit 1
fi fi
#set varible ARCH #set varible ARCH
@ -125,25 +125,25 @@ else
ECHO "Can't find lsb test suite for ${MACHINE_ARCH}" ECHO "Can't find lsb test suite for ${MACHINE_ARCH}"
fi fi
cd .. cd ..
if [ -L poky-image-lsb-${MACHINE_ARCH}.ext3 ];then if [ -L core-image-lsb-${MACHINE_ARCH}.ext3 ];then
/bin/rm poky-image-lsb-${MACHINE_ARCH}.ext3 /bin/rm core-image-lsb-${MACHINE_ARCH}.ext3
exit_check exit_check
fi fi
#creat lsb image #creat lsb image
if [ -f poky-image-lsb-${MACHINE_ARCH}-test.ext3 ];then if [ -f core-image-lsb-${MACHINE_ARCH}-test.ext3 ];then
if [ -d lsbtmp ];then if [ -d lsbtmp ];then
sudo umount lsbtmp sudo umount lsbtmp
fi fi
ECHO "Remove old lsb image..." ECHO "Remove old lsb image..."
/bin/rm poky-image-lsb-${MACHINE_ARCH}-test.ext3 /bin/rm core-image-lsb-${MACHINE_ARCH}-test.ext3
fi fi
ECHO "creat a big ext3 file for lsb image with 5G..." ECHO "creat a big ext3 file for lsb image with 5G..."
dd if=/dev/zero of=poky-image-lsb-${MACHINE_ARCH}-test.ext3 bs=1M count=5000 dd if=/dev/zero of=core-image-lsb-${MACHINE_ARCH}-test.ext3 bs=1M count=5000
exit_check exit_check
ECHO "Format ext3 image,please input \"y\"" ECHO "Format ext3 image,please input \"y\""
mkfs.ext3 poky-image-lsb-${MACHINE_ARCH}-test.ext3 mkfs.ext3 core-image-lsb-${MACHINE_ARCH}-test.ext3
tune2fs -j poky-image-lsb-${MACHINE_ARCH}-test.ext3 tune2fs -j core-image-lsb-${MACHINE_ARCH}-test.ext3
ECHO "get a lsb image with lsb test suite" ECHO "get a lsb image with lsb test suite"
@ -153,11 +153,11 @@ fi
#install file system and lsb test suite to lsb image #install file system and lsb test suite to lsb image
sudo mount -o loop poky-image-lsb-${MACHINE_ARCH}-test.ext3 lsbtmp sudo mount -o loop core-image-lsb-${MACHINE_ARCH}-test.ext3 lsbtmp
exit_check exit_check
ECHO " ->Install file system..." ECHO " ->Install file system..."
sudo tar jxf poky-image-lsb-${MACHINE_ARCH}-${PN}.rootfs.tar.bz2 -C lsbtmp sudo tar jxf core-image-lsb-${MACHINE_ARCH}-${PN}.rootfs.tar.bz2 -C lsbtmp
exit_check exit_check
ECHO " ->Install lsb test suite..." ECHO " ->Install lsb test suite..."
@ -181,18 +181,18 @@ exit_check
sudo rm -rf lsbtmp sudo rm -rf lsbtmp
#change file attribute #change file attribute
sudo chown ${USER}:${USER} poky-image-lsb-${MACHINE_ARCH}-test.ext3 sudo chown ${USER}:${USER} core-image-lsb-${MACHINE_ARCH}-test.ext3
exit_check exit_check
sudo chmod 755 poky-image-lsb-${MACHINE_ARCH}-test.ext3 sudo chmod 755 core-image-lsb-${MACHINE_ARCH}-test.ext3
exit_check exit_check
#set up link #set up link
if [ -L poky-image-lsb-${MACHINE_ARCH}.ext3 ];then if [ -L core-image-lsb-${MACHINE_ARCH}.ext3 ];then
ECHO "Set up link" ECHO "Set up link"
/bin/rm poky-image-lsb-${MACHINE_ARCH}.ext3 /bin/rm core-image-lsb-${MACHINE_ARCH}.ext3
exit_check exit_check
fi fi
ln -s poky-image-lsb-${MACHINE_ARCH}-test.ext3 poky-image-lsb-${MACHINE_ARCH}.ext3 ln -s core-image-lsb-${MACHINE_ARCH}-test.ext3 core-image-lsb-${MACHINE_ARCH}.ext3
ECHO "LSB test environment is set successfully, Please run this image on platform ${MACHINE_ARCH}" ECHO "LSB test environment is set successfully, Please run this image on platform ${MACHINE_ARCH}"

View File

@ -103,8 +103,8 @@ cat <<EOM
You can now run 'bitbake <target>' You can now run 'bitbake <target>'
Common targets are: Common targets are:
poky-image-minimal core-image-minimal
poky-image-sato core-image-sato
meta-toolchain meta-toolchain
meta-toolchain-sdk meta-toolchain-sdk

View File

@ -34,7 +34,7 @@ usage() {
echo "" echo ""
echo "Examples:" echo "Examples:"
echo " $MYNAME qemuarm" echo " $MYNAME qemuarm"
echo " $MYNAME qemux86-64 poky-image-sato ext3" echo " $MYNAME qemux86-64 core-image-sato ext3"
echo " $MYNAME path/to/bzImage-qemux86.bin path/to/nfsrootdir/ serial" echo " $MYNAME path/to/bzImage-qemux86.bin path/to/nfsrootdir/ serial"
echo " $MYNAME qemux86 \"<-m 256>\"" echo " $MYNAME qemux86 \"<-m 256>\""
exit 1 exit 1
@ -234,31 +234,31 @@ machine2=`echo $MACHINE | tr 'a-z' 'A-Z' | sed 's/-/_/'`
# Defaults used when these vars need to be inferred # Defaults used when these vars need to be inferred
QEMUX86_DEFAULT_KERNEL=bzImage-qemux86.bin QEMUX86_DEFAULT_KERNEL=bzImage-qemux86.bin
QEMUX86_DEFAULT_FSTYPE=ext3 QEMUX86_DEFAULT_FSTYPE=ext3
QEMUX86_DEFAULT_ROOTFS="poky-image-sato-sdk poky-image-sato poky-image-lsb poky-image-basic poky-image-minimal" QEMUX86_DEFAULT_ROOTFS="core-image-sato-sdk core-image-sato core-image-lsb core-image-basic core-image-minimal"
QEMUX86_64_DEFAULT_KERNEL=bzImage-qemux86-64.bin QEMUX86_64_DEFAULT_KERNEL=bzImage-qemux86-64.bin
QEMUX86_64_DEFAULT_FSTYPE=ext3 QEMUX86_64_DEFAULT_FSTYPE=ext3
QEMUX86_64_DEFAULT_ROOTFS="poky-image-sato-sdk poky-image-sato poky-image-lsb poky-image-basic poky-image-minimal" QEMUX86_64_DEFAULT_ROOTFS="core-image-sato-sdk core-image-sato core-image-lsb core-image-basic core-image-minimal"
QEMUARM_DEFAULT_KERNEL=zImage-qemuarm.bin QEMUARM_DEFAULT_KERNEL=zImage-qemuarm.bin
QEMUARM_DEFAULT_FSTYPE=ext3 QEMUARM_DEFAULT_FSTYPE=ext3
QEMUARM_DEFAULT_ROOTFS="poky-image-sato-sdk poky-image-sato poky-image-lsb poky-image-basic poky-image-minimal" QEMUARM_DEFAULT_ROOTFS="core-image-sato-sdk core-image-sato core-image-lsb core-image-basic core-image-minimal"
QEMUMIPS_DEFAULT_KERNEL=vmlinux-qemumips.bin QEMUMIPS_DEFAULT_KERNEL=vmlinux-qemumips.bin
QEMUMIPS_DEFAULT_FSTYPE=ext3 QEMUMIPS_DEFAULT_FSTYPE=ext3
QEMUMIPS_DEFAULT_ROOTFS="poky-image-sato-sdk poky-image-sato poky-image-lsb poky-image-basic poky-image-minimal" QEMUMIPS_DEFAULT_ROOTFS="core-image-sato-sdk core-image-sato core-image-lsb core-image-basic core-image-minimal"
QEMUPPC_DEFAULT_KERNEL=zImage-qemuppc.bin QEMUPPC_DEFAULT_KERNEL=zImage-qemuppc.bin
QEMUPPC_DEFAULT_FSTYPE=ext3 QEMUPPC_DEFAULT_FSTYPE=ext3
QEMUPPC_DEFAULT_ROOTFS="poky-image-sato-sdk poky-image-sato poky-image-lsb poky-image-basic poky-image-minimal" QEMUPPC_DEFAULT_ROOTFS="core-image-sato-sdk core-image-sato core-image-lsb core-image-basic core-image-minimal"
AKITA_DEFAULT_KERNEL=zImage-akita.bin AKITA_DEFAULT_KERNEL=zImage-akita.bin
AKITA_DEFAULT_FSTYPE=jffs2 AKITA_DEFAULT_FSTYPE=jffs2
AKITA_DEFAULT_ROOTFS="poky-image-sato" AKITA_DEFAULT_ROOTFS="core-image-sato"
SPITZ_DEFAULT_KERNEL=zImage-spitz.bin SPITZ_DEFAULT_KERNEL=zImage-spitz.bin
SPITZ_DEFAULT_FSTYPE=ext3 SPITZ_DEFAULT_FSTYPE=ext3
SPITZ_DEFAULT_ROOTFS="poky-image-sato" SPITZ_DEFAULT_ROOTFS="core-image-sato"
setup_tmpdir() { setup_tmpdir() {
if [ -z "$TMPDIR" ]; then if [ -z "$TMPDIR" ]; then
@ -353,7 +353,7 @@ fi
# FSTYPE is now set for all cases # FSTYPE is now set for all cases
# Handle cases where a ROOTFS type is given instead of a filename, e.g. # Handle cases where a ROOTFS type is given instead of a filename, e.g.
# poky-image-sato # core-image-sato
if [ "$LAZY_ROOTFS" = "true" ]; then if [ "$LAZY_ROOTFS" = "true" ]; then
setup_tmpdir setup_tmpdir
echo "Assuming $ROOTFS really means $TMPDIR/deploy/images/$ROOTFS-$MACHINE.$FSTYPE" echo "Assuming $ROOTFS really means $TMPDIR/deploy/images/$ROOTFS-$MACHINE.$FSTYPE"

View File

@ -39,7 +39,7 @@ where:
<zimage> is the path to a kernel (e.g. zimage-qemuarm.bin) <zimage> is the path to a kernel (e.g. zimage-qemuarm.bin)
<filesystem> is the path to the image (e.g. filesystem-qemuarm.ext2) <filesystem> is the path to the image (e.g. filesystem-qemuarm.ext2)
It will default to the qemuarm, ext2 and the last kernel and poky-image-sdk It will default to the qemuarm, ext2 and the last kernel and core-image-sdk
image built by poky. image built by poky.