Message ID | 20250922172501.21690-1-reatmon@ti.com |
---|---|
State | Accepted |
Delegated to: | Ryan Eatmon |
Headers | show |
Series | [meta-arago,master] ti-test: Make opencl-cts dependent on DISTRO_FEATURES | expand |
meta-arago / na / 20250922172501.21690-1-reatmon PRC Results: PASS ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- All patches passed ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [meta-arago][master][PATCH] ti-test: Make opencl-cts dependent on DISTRO_FEATURES - Submitter: From: Ryan Eatmon <reatmon@ti.com> - Date: Date: Mon, 22 Sep 2025 12:25:01 -0500 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: 03cf38ecc6cce8d5bcb88988a8807008b4c12be9 Applied to: - Repository: lcpd-prc-meta-arago - Base Branch: master-next - Commit Author: LCPD Automation Script <lcpdbld@list.ti.com> - Commit Subject: CI/CD Auto-Merger: cicd.master.202509220100 - Commit SHA: bc4070905b7434a863b5a6e9eb50d40db75e38cf Patches ---------------------------------------- All patches applied ========================================================= check-yocto-repo: PASS ========================================================= master ===================== PASS
diff --git a/meta-arago-test/recipes-core/packagegroups/ti-test.bb b/meta-arago-test/recipes-core/packagegroups/ti-test.bb index cc194a45..71122d78 100644 --- a/meta-arago-test/recipes-core/packagegroups/ti-test.bb +++ b/meta-arago-test/recipes-core/packagegroups/ti-test.bb @@ -73,7 +73,7 @@ TI_TEST_EXTRAS = " \ python3-numpy \ wayland-utils \ offscreendemo \ - opencl-cts \ + ${@bb.utils.contains('DISTRO_FEATURES', 'opencl', 'opencl-cts', '', d)} \ " TI_TEST_BASE:append:armv7a = " \
The opencl-cts recipe now requires that DISTRO_FEATURES include "opencl" to build [1]. We need the same kind of check to not include that recipe if opencl is not enabled for the distro. [1] https://git.openembedded.org/meta-openembedded/commit/?id=f65ae714d885a99b89c17088842aa9724ba29b16 Signed-off-by: Ryan Eatmon <reatmon@ti.com> --- meta-arago-test/recipes-core/packagegroups/ti-test.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)