From patchwork Sat Jun 10 01:52:52 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randolph Sapp X-Patchwork-Id: 25395 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id D5DF3C7EE25 for ; Sat, 10 Jun 2023 01:53:16 +0000 (UTC) Received: from fllv0015.ext.ti.com (fllv0015.ext.ti.com [198.47.19.141]) by mx.groups.io with SMTP id smtpd.web11.10662.1686361991825691396 for ; Fri, 09 Jun 2023 18:53:12 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=WQUSpxqX; spf=pass (domain: ti.com, ip: 198.47.19.141, mailfrom: rs@ti.com) Received: from lelv0266.itg.ti.com ([10.180.67.225]) by fllv0015.ext.ti.com (8.15.2/8.15.2) with ESMTP id 35A1r71A059551; Fri, 9 Jun 2023 20:53:07 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1686361987; bh=zsdUj4ah38gZCwgV2MllHOz9Hl4Xn+ji6XjTeqBUtv8=; h=From:To:CC:Subject:Date; b=WQUSpxqX51ypkx/Zvf2rhfhjVqjwu11lJ64qC7fcW8LjjRmQQ9R4ARrt+75FM5VSk I9UDE0KlSEa5j21x+sOxhODJ3TOMl7L8IUNlFEAn/vbzzaKE1C9NvBOV25BKKdThgn sT8DPjlu2r1H8i5IhGPiSv3h22WhdlddxRtz3RsY= Received: from DLEE114.ent.ti.com (dlee114.ent.ti.com [157.170.170.25]) by lelv0266.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 35A1r7WH019687 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Fri, 9 Jun 2023 20:53:07 -0500 Received: from DLEE102.ent.ti.com (157.170.170.32) by DLEE114.ent.ti.com (157.170.170.25) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Fri, 9 Jun 2023 20:53:07 -0500 Received: from fllv0040.itg.ti.com (10.64.41.20) by DLEE102.ent.ti.com (157.170.170.32) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Fri, 9 Jun 2023 20:53:07 -0500 Received: from rs-desk.dhcp.ti.com (ileaxei01-snat.itg.ti.com [10.180.69.5]) by fllv0040.itg.ti.com (8.15.2/8.15.2) with ESMTP id 35A1r76G065792; Fri, 9 Jun 2023 20:53:07 -0500 From: To: , CC: , Randolph Sapp Subject: [meta-arago][kirkstone/master][PATCH] arago.conf: set khronos cts build for wayland or surfaceless Date: Fri, 9 Jun 2023 20:52:52 -0500 Message-ID: <20230610015252.3826848-1-rs@ti.com> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 10 Jun 2023 01:53:16 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14589 From: Randolph Sapp Variably set the cts build for wayland or surfaceless depending on the presence of the wayland distro feature. Signed-off-by: Randolph Sapp --- meta-arago-distro/conf/distro/arago.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf index 528635e3..95c6d7af 100644 --- a/meta-arago-distro/conf/distro/arago.conf +++ b/meta-arago-distro/conf/distro/arago.conf @@ -98,6 +98,8 @@ PACKAGECONFIG:pn-glmark2 = "drm-gles2 wayland-gles2" # Enable testing for opencl and vulkan with piglit PACKAGECONFIG:append:pn-piglit = " ${@bb.utils.filter("DISTRO_FEATURES", "opencl vulkan", d)}" +PACKAGECONFIG:pn-opengl-es-cts = "${@bb.utils.contains("DISTRO_FEATURES", "wayland", "wayland", "surfaceless", d)}" +PACKAGECONFIG:pn-vulkan-cts = "${@bb.utils.contains("DISTRO_FEATURES", "wayland", "wayland", "surfaceless", d)}" # Enable encryption support in open62541 PACKAGECONFIG:append:pn-open62541 = " encrypt"