Create two new variables to group packages that depends on "opengl" and "opencl". Then add a DISTRO_FEATURE check to include the new variables.
Signed-off-by: Ryan Eatmon <[email protected]> --- .../recipes-core/packagegroups/ti-test.bb | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/meta-arago-test/recipes-core/packagegroups/ti-test.bb b/meta-arago-test/recipes-core/packagegroups/ti-test.bb index c73f42f9..960e3c18 100644 --- a/meta-arago-test/recipes-core/packagegroups/ti-test.bb +++ b/meta-arago-test/recipes-core/packagegroups/ti-test.bb @@ -67,14 +67,22 @@ TI_TEST_BASE:append:ti-soc = " \ mtd-utils-ubifs-tests \ " +TI_TEST_EXTRAS_OPENGL = " \ + piglit \ + offscreendemo \ +" + +TI_TEST_EXTRAS_OPENCL = " \ + opencl-cts \ +" + TI_TEST_EXTRAS = " \ python3-pillow \ pytesseract \ - piglit \ python3-numpy \ wayland-utils \ - offscreendemo \ - opencl-cts \ + ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', '${TI_TEST_EXTRAS_OPENGL}', '', d)} \ + ${@bb.utils.contains('DISTRO_FEATURES', 'opencl', '${TI_TEST_EXTRAS_OPENCL}', '', d)} \ " TI_TEST_EXTRAS:append:ti-soc = " libsdl2-tests" -- 2.17.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#16762): https://lists.yoctoproject.org/g/meta-arago/message/16762 Mute This Topic: https://lists.yoctoproject.org/mt/116283881/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
