diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-08-31 10:45:58 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-04 12:53:00 +0100 |
commit | 2a21c8330058752dd96900eaab266d4c75de3b57 (patch) | |
tree | 84fd4ad988c9fcc3f5d28cb640f9cd08b91fdb28 /meta/recipes-core | |
parent | 86d4bb2c3ed24843a3e0bdacc91e49b57943c9fb (diff) | |
download | poky-2a21c8330058752dd96900eaab266d4c75de3b57.tar.gz |
packagegroup-core-console: remove
This provides one package group, packagegroup-core-apps-console, which
is usually brought in by adding "apps-console-core" to IMAGE_FEATURES.
Aside from the naming inconsistencies, this is a group of mostly
unrelated packages, none of which are actually "apps". Handling each
one:
* dbus: should mostly be brought in by package runtime dependencies
* avahi-daemon: if you are using packagegroup-base (as all images that
inherit from core-image do) this is brought in by having "zeroconf" in
DISTRO_FEATURES.
* portmap: not very useful by itself; should be brought in by selecting
NFS server/client through other means.
* psplash (or whatever SPLASH is set to): this has been changed to be
an explicit item "splash" in IMAGE_FEATURES. Since this is a fairly
fundamental feature, a piece of code has been added to automatically
handle this for images still using apps-console-core (and show a
warning).
(From OE-Core rev: 592d6e602466628d10704835a7b07d3d713f58e1)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/images/core-image-base.bb | 2 | ||||
-rw-r--r-- | meta/recipes-core/packagegroups/packagegroup-core-console.bb | 20 | ||||
-rw-r--r-- | meta/recipes-core/packagegroups/packagegroup-core-sdk.bb | 1 |
3 files changed, 1 insertions, 22 deletions
diff --git a/meta/recipes-core/images/core-image-base.bb b/meta/recipes-core/images/core-image-base.bb index 30c8dd1553..8ef3376bfb 100644 --- a/meta/recipes-core/images/core-image-base.bb +++ b/meta/recipes-core/images/core-image-base.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | DESCRIPTION = "A console-only image that fully supports the target device \ | 1 | DESCRIPTION = "A console-only image that fully supports the target device \ |
2 | hardware." | 2 | hardware." |
3 | 3 | ||
4 | IMAGE_FEATURES += "apps-console-core" | 4 | IMAGE_FEATURES += "splash" |
5 | 5 | ||
6 | LICENSE = "MIT" | 6 | LICENSE = "MIT" |
7 | 7 | ||
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-console.bb b/meta/recipes-core/packagegroups/packagegroup-core-console.bb deleted file mode 100644 index 0c5e7f1e25..0000000000 --- a/meta/recipes-core/packagegroups/packagegroup-core-console.bb +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | # | ||
2 | # Copyright (C) 2011 Intel Corporation | ||
3 | # | ||
4 | |||
5 | DESCRIPTION = "Tasks for core console applications" | ||
6 | LICENSE = "MIT" | ||
7 | PR = "r35" | ||
8 | |||
9 | inherit packagegroup | ||
10 | |||
11 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
12 | |||
13 | SPLASH ?= "psplash" | ||
14 | |||
15 | RDEPENDS_packagegroup-core-apps-console = "\ | ||
16 | avahi-daemon \ | ||
17 | dbus \ | ||
18 | portmap \ | ||
19 | ${SPLASH}" | ||
20 | |||
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-sdk.bb b/meta/recipes-core/packagegroups/packagegroup-core-sdk.bb index 8d7bbac3a5..e944ec5fe0 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-sdk.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-sdk.bb | |||
@@ -4,7 +4,6 @@ | |||
4 | 4 | ||
5 | DESCRIPTION = "Software Development Tasks for OpenedHand Poky" | 5 | DESCRIPTION = "Software Development Tasks for OpenedHand Poky" |
6 | LICENSE = "MIT" | 6 | LICENSE = "MIT" |
7 | DEPENDS = "packagegroup-core-console" | ||
8 | PR = "r8" | 7 | PR = "r8" |
9 | 8 | ||
10 | inherit packagegroup | 9 | inherit packagegroup |