diff options
Diffstat (limited to 'meta/classes/packagegroup.bbclass')
-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 |