From: Florian Boor Date: Tue, 27 Jul 2021 16:05:42 +0000 (+0200) Subject: packagegroup-base: Add bbappend to create base group for the X-Git-Url: https://git.karo-electronics.de/?p=meta-kc-bsp.git;a=commitdiff_plain;h=bb098960760a40ff824721929d18645be0c1fd86 packagegroup-base: Add bbappend to create base group for the "can" feaure. It is a combined device/distro feature and pulls can utils and iproute2 into the image. --- diff --git a/recipes-core/packagegroups/packagegroup-base.bbappend b/recipes-core/packagegroups/packagegroup-base.bbappend new file mode 100644 index 0000000..9f4b668 --- /dev/null +++ b/recipes-core/packagegroups/packagegroup-base.bbappend @@ -0,0 +1,11 @@ +PACKAGES_append = " \ + ${@bb.utils.contains('MACHINE_FEATURES','can','packagegroup-base-can','',d)} \ + " + +RDEPENDS_packagegroup-base_append = "\ + ${@bb.utils.contains('COMBINED_FEATURES', 'can', 'packagegroup-base-can', '',d)} \ +" + +RRECOMMENDS_packagegroup-base-can = "\ + iproute2 \ + canutils"