summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShane Wang <shane.wang@intel.com>2012-01-20 13:46:06 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-24 11:54:15 +0000
commit127d1fd1c2771e732f7b8b8699352e855a308cae (patch)
tree3bf16203eb2c11c7bf4f9da73446f667394a8181
parent6b2b5d2acd1012f3e3c4c03cc528422a249d718f (diff)
downloadpoky-127d1fd1c2771e732f7b8b8699352e855a308cae.tar.gz
core-image-foo: add description to each image bb file
Add DESCRIPTION to each image bb file according to poky reference manual for Hob2 use later. (From OE-Core rev: 05a7c022e613f35de8ce47bb667140a7ce47fcea) Signed-off-by: Shane Wang <shane.wang@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/images/core-image-base.bb2
-rw-r--r--meta/recipes-core/images/core-image-core.bb2
-rw-r--r--meta/recipes-core/images/core-image-minimal-dev.bb2
-rw-r--r--meta/recipes-core/images/core-image-minimal-initramfs.bb3
-rw-r--r--meta/recipes-core/images/core-image-minimal-mtdutils.bb4
-rw-r--r--meta/recipes-core/images/core-image-minimal.bb2
-rw-r--r--meta/recipes-extended/images/core-image-basic.bb3
-rw-r--r--meta/recipes-extended/images/core-image-lsb-dev.bb4
-rw-r--r--meta/recipes-extended/images/core-image-lsb-sdk.bb4
-rw-r--r--meta/recipes-extended/images/core-image-lsb.bb3
-rw-r--r--meta/recipes-graphics/images/core-image-clutter.bb3
-rw-r--r--meta/recipes-sato/images/core-image-sato-dev.bb3
-rw-r--r--meta/recipes-sato/images/core-image-sato-sdk.bb4
-rw-r--r--meta/recipes-sato/images/core-image-sato.bb2
14 files changed, 40 insertions, 1 deletions
diff --git a/meta/recipes-core/images/core-image-base.bb b/meta/recipes-core/images/core-image-base.bb
index 13a76508a0..71ff3b94ac 100644
--- a/meta/recipes-core/images/core-image-base.bb
+++ b/meta/recipes-core/images/core-image-base.bb
@@ -1,6 +1,8 @@
1# 1#
2# Copyright (C) 2007 OpenedHand Ltd. 2# Copyright (C) 2007 OpenedHand Ltd.
3# 3#
4DESCRIPTION = "A console-only image that fully supports the target device \
5hardware."
4 6
5IMAGE_FEATURES += "apps-console-core" 7IMAGE_FEATURES += "apps-console-core"
6 8
diff --git a/meta/recipes-core/images/core-image-core.bb b/meta/recipes-core/images/core-image-core.bb
index 57ff0850da..2d768e0b78 100644
--- a/meta/recipes-core/images/core-image-core.bb
+++ b/meta/recipes-core/images/core-image-core.bb
@@ -1,6 +1,8 @@
1# 1#
2# Copyright (C) 2007 OpenedHand Ltd. 2# Copyright (C) 2007 OpenedHand Ltd.
3# 3#
4DESCRIPTION = "An X11 image with simple applications such as terminal, editor \
5and file manager."
4 6
5IMAGE_FEATURES += "apps-console-core ${X11_IMAGE_FEATURES}" 7IMAGE_FEATURES += "apps-console-core ${X11_IMAGE_FEATURES}"
6 8
diff --git a/meta/recipes-core/images/core-image-minimal-dev.bb b/meta/recipes-core/images/core-image-minimal-dev.bb
index 89ec9f8833..3a0a1879ec 100644
--- a/meta/recipes-core/images/core-image-minimal-dev.bb
+++ b/meta/recipes-core/images/core-image-minimal-dev.bb
@@ -1,6 +1,8 @@
1# 1#
2# Copyright (C) 2007 OpenedHand Ltd. 2# Copyright (C) 2007 OpenedHand Ltd.
3# 3#
4DESCRIPTION = "A core-image-minimal image suitable for development work."
5
4IMAGE_INSTALL = "task-core-boot ${ROOTFS_PKGMANAGE}" 6IMAGE_INSTALL = "task-core-boot ${ROOTFS_PKGMANAGE}"
5 7
6IMAGE_FEATURES += "dev-pkgs" 8IMAGE_FEATURES += "dev-pkgs"
diff --git a/meta/recipes-core/images/core-image-minimal-initramfs.bb b/meta/recipes-core/images/core-image-minimal-initramfs.bb
index 5149f31546..85b9ff9b3f 100644
--- a/meta/recipes-core/images/core-image-minimal-initramfs.bb
+++ b/meta/recipes-core/images/core-image-minimal-initramfs.bb
@@ -1,4 +1,7 @@
1# Simple initramfs image. Mostly used for live images. 1# Simple initramfs image. Mostly used for live images.
2DESCRIPTION = "A core-image-minimal image that has the Minimal RAM-based \
3Initial Root Filesystem (initramfs) as part of the kernel, which allows the \
4system to find the first 'init' program more efficiently."
2 5
3IMAGE_INSTALL = "initramfs-live-boot initramfs-live-install busybox udev base-passwd" 6IMAGE_INSTALL = "initramfs-live-boot initramfs-live-install busybox udev base-passwd"
4 7
diff --git a/meta/recipes-core/images/core-image-minimal-mtdutils.bb b/meta/recipes-core/images/core-image-minimal-mtdutils.bb
index adabaa400a..7b7f700618 100644
--- a/meta/recipes-core/images/core-image-minimal-mtdutils.bb
+++ b/meta/recipes-core/images/core-image-minimal-mtdutils.bb
@@ -3,4 +3,8 @@
3# 3#
4require core-image-minimal.bb 4require core-image-minimal.bb
5 5
6DESCRIPTION = "A core-image-minimal image that has support the Minimal MTD \
7Utilities, which let the user interact with the MTD subsystem in the kernel \
8to perform operations on flash devices."
9
6IMAGE_INSTALL += "mtd-utils" 10IMAGE_INSTALL += "mtd-utils"
diff --git a/meta/recipes-core/images/core-image-minimal.bb b/meta/recipes-core/images/core-image-minimal.bb
index 56fc20ce05..687f72a4cc 100644
--- a/meta/recipes-core/images/core-image-minimal.bb
+++ b/meta/recipes-core/images/core-image-minimal.bb
@@ -1,6 +1,8 @@
1# 1#
2# Copyright (C) 2007 OpenedHand Ltd. 2# Copyright (C) 2007 OpenedHand Ltd.
3# 3#
4DESCRIPTION = "A small image just capable of allowing a device to boot."
5
4IMAGE_INSTALL = "task-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${POKY_EXTRA_INSTALL}" 6IMAGE_INSTALL = "task-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${POKY_EXTRA_INSTALL}"
5 7
6IMAGE_LINGUAS = " " 8IMAGE_LINGUAS = " "
diff --git a/meta/recipes-extended/images/core-image-basic.bb b/meta/recipes-extended/images/core-image-basic.bb
index ba71cd091e..5e58e60100 100644
--- a/meta/recipes-extended/images/core-image-basic.bb
+++ b/meta/recipes-extended/images/core-image-basic.bb
@@ -1,3 +1,6 @@
1DESCRIPTION = "A foundational basic image without support for X that can be \
2reasonably used for customization."
3
1IMAGE_FEATURES += "apps-console-core ssh-server-openssh" 4IMAGE_FEATURES += "apps-console-core ssh-server-openssh"
2 5
3IMAGE_INSTALL = "\ 6IMAGE_INSTALL = "\
diff --git a/meta/recipes-extended/images/core-image-lsb-dev.bb b/meta/recipes-extended/images/core-image-lsb-dev.bb
index 9ef85ff8aa..2d6f6744a8 100644
--- a/meta/recipes-extended/images/core-image-lsb-dev.bb
+++ b/meta/recipes-extended/images/core-image-lsb-dev.bb
@@ -1,3 +1,7 @@
1DESCRIPTION = "A core-image-lsb that includes everything in meta-toolchain \
2but also includes development headers and libraries to form a complete \
3standalone SDK."
4
1IMAGE_FEATURES += "apps-console-core dev-pkgs ssh-server-openssh" 5IMAGE_FEATURES += "apps-console-core dev-pkgs ssh-server-openssh"
2 6
3IMAGE_INSTALL = "\ 7IMAGE_INSTALL = "\
diff --git a/meta/recipes-extended/images/core-image-lsb-sdk.bb b/meta/recipes-extended/images/core-image-lsb-sdk.bb
index 5e0e7aea40..105c8db8a8 100644
--- a/meta/recipes-extended/images/core-image-lsb-sdk.bb
+++ b/meta/recipes-extended/images/core-image-lsb-sdk.bb
@@ -1,3 +1,7 @@
1DESCRIPTION = "A core-image-lsb that includes everything in meta-toolchain \
2but also includes development headers and libraries to form a complete \
3standalone SDK."
4
1IMAGE_FEATURES += "apps-console-core tools-sdk dev-pkgs ssh-server-openssh" 5IMAGE_FEATURES += "apps-console-core tools-sdk dev-pkgs ssh-server-openssh"
2EXTRA_IMAGE_FEATURES = "tools-debug tools-profile tools-testapps debug-tweaks" 6EXTRA_IMAGE_FEATURES = "tools-debug tools-profile tools-testapps debug-tweaks"
3 7
diff --git a/meta/recipes-extended/images/core-image-lsb.bb b/meta/recipes-extended/images/core-image-lsb.bb
index 22eb7f48e9..f6696183e6 100644
--- a/meta/recipes-extended/images/core-image-lsb.bb
+++ b/meta/recipes-extended/images/core-image-lsb.bb
@@ -1,3 +1,6 @@
1DESCRIPTION = "A core-image-basic image suitable for implementations that \
2conform to Linux Standard Base (LSB)."
3
1IMAGE_FEATURES += "apps-console-core ssh-server-openssh" 4IMAGE_FEATURES += "apps-console-core ssh-server-openssh"
2 5
3IMAGE_INSTALL = "\ 6IMAGE_INSTALL = "\
diff --git a/meta/recipes-graphics/images/core-image-clutter.bb b/meta/recipes-graphics/images/core-image-clutter.bb
index 7d50405617..636238a6d1 100644
--- a/meta/recipes-graphics/images/core-image-clutter.bb
+++ b/meta/recipes-graphics/images/core-image-clutter.bb
@@ -1,3 +1,6 @@
1DESCRIPTION = "An image with support for the Open GL-based toolkit Clutter, \
2which enables development of rich and animated graphical user interfaces."
3
1IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES}" 4IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES}"
2 5
3LICENSE = "MIT" 6LICENSE = "MIT"
diff --git a/meta/recipes-sato/images/core-image-sato-dev.bb b/meta/recipes-sato/images/core-image-sato-dev.bb
index 7322b4afbe..b30447c583 100644
--- a/meta/recipes-sato/images/core-image-sato-dev.bb
+++ b/meta/recipes-sato/images/core-image-sato-dev.bb
@@ -1,6 +1,9 @@
1# 1#
2# Copyright (C) 2007 OpenedHand Ltd. 2# Copyright (C) 2007 OpenedHand Ltd.
3# 3#
4DESCRIPTION = "A core-image-sato image suitable for development that also \
5includes a native toolchain and libraries needed to build applications on the \
6device itself."
4 7
5IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} dev-pkgs" 8IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} dev-pkgs"
6 9
diff --git a/meta/recipes-sato/images/core-image-sato-sdk.bb b/meta/recipes-sato/images/core-image-sato-sdk.bb
index 6c2dc60100..2cf8cadea7 100644
--- a/meta/recipes-sato/images/core-image-sato-sdk.bb
+++ b/meta/recipes-sato/images/core-image-sato-sdk.bb
@@ -1,7 +1,9 @@
1# 1#
2# Copyright (C) 2007 OpenedHand Ltd. 2# Copyright (C) 2007 OpenedHand Ltd.
3# 3#
4 4DESCRIPTION = "A core-image-sato image that includes everything in \
5meta-toolchain. The image also includes development headers and libraries \
6to form a complete standalone SDK."
5 7
6IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} dev-pkgs tools-sdk qt4-pkgs" 8IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES} dev-pkgs tools-sdk qt4-pkgs"
7EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks" 9EXTRA_IMAGE_FEATURES += "tools-debug tools-profile tools-testapps debug-tweaks"
diff --git a/meta/recipes-sato/images/core-image-sato.bb b/meta/recipes-sato/images/core-image-sato.bb
index 3465174a5b..11c3318001 100644
--- a/meta/recipes-sato/images/core-image-sato.bb
+++ b/meta/recipes-sato/images/core-image-sato.bb
@@ -1,6 +1,8 @@
1# 1#
2# Copyright (C) 2007 OpenedHand Ltd. 2# Copyright (C) 2007 OpenedHand Ltd.
3# 3#
4DESCRIPTION = "An image with Sato support, a mobile environment and visual \
5style that works well with mobile devices."
4 6
5IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES}" 7IMAGE_FEATURES += "apps-console-core ${SATO_IMAGE_FEATURES}"
6 8