From a82412530c4df0ffa98c159c152021cbb51e8eae Mon Sep 17 00:00:00 2001 From: Javier Viguera Date: Fri, 17 Apr 2026 12:07:33 +0200 Subject: [PATCH] packagegroup-dey-examples: skip MCA examples on ccimx95 Module ccimx95 enables the mca machine feature, but it does not support dey-examples-adc-cmp or dey-examples-tamper. Move the MCA example list to DEY_EXAMPLES_MCA and clear it for ccimx95. Signed-off-by: Javier Viguera --- .../recipes-digi/packagegroups/packagegroup-dey-examples.bb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta-digi-dey/recipes-digi/packagegroups/packagegroup-dey-examples.bb b/meta-digi-dey/recipes-digi/packagegroups/packagegroup-dey-examples.bb index b0503067b..f29464a0a 100644 --- a/meta-digi-dey/recipes-digi/packagegroups/packagegroup-dey-examples.bb +++ b/meta-digi-dey/recipes-digi/packagegroups/packagegroup-dey-examples.bb @@ -4,6 +4,9 @@ SUMMARY = "DEY examples packagegroup" DEPENDS = "virtual/kernel" +DEY_EXAMPLES_MCA = "dey-examples-adc-cmp dey-examples-tamper" +DEY_EXAMPLES_MCA:ccimx95 = "" + PACKAGE_ARCH = "${MACHINE_ARCH}" inherit packagegroup @@ -13,8 +16,7 @@ RDEPENDS:${PN} = "\ ${@bb.utils.contains("MACHINE_FEATURES", "bluetooth", "dey-examples-bt-gatt-server", "", d)} \ ${@bb.utils.contains("MACHINE_FEATURES", "bluetooth", "dey-examples-hdp", "", d)} \ ${@bb.utils.contains("MACHINE_FEATURES", "cryptochip", "dey-examples-cryptochip", "", d)} \ - ${@bb.utils.contains("MACHINE_FEATURES", "mca", "dey-examples-adc-cmp \ - dey-examples-tamper", "", d)} \ + ${@bb.utils.contains("MACHINE_FEATURES", "mca", "${DEY_EXAMPLES_MCA}", "", d)} \ dey-examples-caamblob \ dey-examples-cccs \ dey-examples-digiapix \