* RFC because: packagegroup.bbclass inherits allarch and by default sets PACKAGE_ARCH = "all", but then it has runtime-dependency on TUNE_PKGARCH packages and different signatures, so instead of setting INHIBIT_DEFAULT_DEPS in addition to inherit allarch I would like to drop default allarch completely. * drop virtual/kernel dependency from packagegroup-core-boot because kernel isn't needed to build packagegroup and building it doesn't influence if it's included in image or not.
Signed-off-by: Martin Jansa <[email protected]> --- meta/classes/packagegroup.bbclass | 4 ++++ meta/recipes-core/packagegroups/packagegroup-core-boot.bb | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/classes/packagegroup.bbclass b/meta/classes/packagegroup.bbclass index 9bc9cc2..bd212fd 100644 --- a/meta/classes/packagegroup.bbclass +++ b/meta/classes/packagegroup.bbclass @@ -11,6 +11,10 @@ PACKAGES = "${PN}" # need to be set to MACHINE_ARCH after inheriting packagegroup.bbclass inherit allarch +# allarch.bbclass does that only when PACKAGE_ARCH = "all", +# but we don't want any build time dependencies even for MACHINE_ARCH packagegroups +INHIBIT_DEFAULT_DEPS = "1" + # This automatically adds -dbg and -dev flavours of all PACKAGES # to the list. Their dependencies (RRECOMMENDS) are handled as usual # by package_depchains in a following step. diff --git a/meta/recipes-core/packagegroups/packagegroup-core-boot.bb b/meta/recipes-core/packagegroups/packagegroup-core-boot.bb index 486385a..5455899 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-boot.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-boot.bb @@ -5,7 +5,6 @@ SUMMARY = "Minimal boot requirements" DESCRIPTION = "The minimal set of packages required to boot the system" LICENSE = "MIT" -DEPENDS = "virtual/kernel" PR = "r11" inherit packagegroup -- 1.8.4.2 _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
