diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-08-29 13:13:12 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-04 12:52:56 +0100 |
commit | 14bf9637bedf068cb548f4bd5e16fd5028a48d14 (patch) | |
tree | 51b09aa2b5b3c46550eaad8e8c08c0060ec9c420 /meta/classes | |
parent | ca8f7ecca7c19933ffcf1a9f080a39a84318ebb4 (diff) | |
download | poky-14bf9637bedf068cb548f4bd5e16fd5028a48d14.tar.gz |
classes/packagegroup: Use package group nomenclature
(From OE-Core rev: aafd94acaa6517e3322855123c43a7b5cd5916ee)
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/classes')
-rw-r--r-- | meta/classes/packagegroup.bbclass | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/meta/classes/packagegroup.bbclass b/meta/classes/packagegroup.bbclass index 6ec154a033..aa9e0ac650 100644 --- a/meta/classes/packagegroup.bbclass +++ b/meta/classes/packagegroup.bbclass | |||
@@ -1,16 +1,18 @@ | |||
1 | # Task packages are only used to pull in other packages | 1 | # Class for packagegroup (package group) recipes |
2 | |||
3 | # packagegroup packages are only used to pull in other packages | ||
2 | # via their dependencies. They are empty. | 4 | # via their dependencies. They are empty. |
3 | ALLOW_EMPTY = "1" | 5 | ALLOW_EMPTY = "1" |
4 | 6 | ||
5 | # By default, only the task package itself is in PACKAGES. | 7 | # By default, only the packagegroup package itself is in PACKAGES. |
6 | # -dbg and -dev flavours are handled by the anonfunc below. | 8 | # -dbg and -dev flavours are handled by the anonfunc below. |
7 | # This means that task recipes used to build multiple task | 9 | # This means that packagegroup recipes used to build multiple packagegroup |
8 | # packages have to modify PACKAGES after inheriting task.bbclass. | 10 | # packages have to modify PACKAGES after inheriting packagegroup.bbclass. |
9 | PACKAGES = "${PN}" | 11 | PACKAGES = "${PN}" |
10 | 12 | ||
11 | # By default, task packages do not depend on a certain architecture. | 13 | # By default, packagegroup packages do not depend on a certain architecture. |
12 | # Only if dependencies are modified by MACHINE_FEATURES, packages | 14 | # Only if dependencies are modified by MACHINE_FEATURES, packages |
13 | # need to be set to MACHINE_ARCH after inheriting task.bbclass | 15 | # need to be set to MACHINE_ARCH after inheriting packagegroup.bbclass |
14 | PACKAGE_ARCH = "all" | 16 | PACKAGE_ARCH = "all" |
15 | 17 | ||
16 | # This automatically adds -dbg and -dev flavours of all PACKAGES | 18 | # This automatically adds -dbg and -dev flavours of all PACKAGES |