From patchwork Thu Feb 8 07:28:59 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sai Sree Kartheek Adivi X-Patchwork-Id: 39030 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 A2AB8C4828F for ; Thu, 8 Feb 2024 07:29:14 +0000 (UTC) Received: from fllv0016.ext.ti.com (fllv0016.ext.ti.com [198.47.19.142]) by mx.groups.io with SMTP id smtpd.web11.12975.1707377353203250828 for ; Wed, 07 Feb 2024 23:29:13 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=DLEbZJrI; spf=pass (domain: ti.com, ip: 198.47.19.142, mailfrom: s-adivi@ti.com) Received: from fllv0035.itg.ti.com ([10.64.41.0]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id 4187T8ZG034956; Thu, 8 Feb 2024 01:29:08 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1707377348; bh=XhYLiQtOGUPYthtfriybuNsbjjA+NEamlnDrGlYmuas=; h=From:To:CC:Subject:Date; b=DLEbZJrIpUHdLYlXhy9MJ1Lgf0MeeBxlSrqGJTgEyT3rD/dnfjpllOLqH35vl2F1l TbuLnNgeNqXyew3Fw7P77v4y95x0dITUgEFaSEejDLUs+mtSLVulJ9KgShUnNmgCdj ObLqd9WWq5Y01ylQoaCU+G9Q4hIaCJwnBHJmhs78= Received: from DFLE115.ent.ti.com (dfle115.ent.ti.com [10.64.6.36]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 4187T84V099252 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 8 Feb 2024 01:29:08 -0600 Received: from DFLE105.ent.ti.com (10.64.6.26) by DFLE115.ent.ti.com (10.64.6.36) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Thu, 8 Feb 2024 01:29:08 -0600 Received: from lelvsmtp5.itg.ti.com (10.180.75.250) by DFLE105.ent.ti.com (10.64.6.26) 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; Thu, 8 Feb 2024 01:29:08 -0600 Received: from localhost (chirag-hp-z2-tower-g5-workstation.dhcp.ti.com [172.24.227.238]) by lelvsmtp5.itg.ti.com (8.15.2/8.15.2) with ESMTP id 4187T7M5123246; Thu, 8 Feb 2024 01:29:08 -0600 From: Sai Sree Kartheek Adivi To: , , , CC: , , , , , Subject: [PATCH] packagegroup: graphics-sdk-target: Add GLES3 headers Date: Thu, 8 Feb 2024 12:58:59 +0530 Message-ID: <20240208072859.2069312-1-s-adivi@ti.com> X-Mailer: git-send-email 2.34.1 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 ; Thu, 08 Feb 2024 07:29:14 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/15132 GLES3 headers are missing in the linux-devkit/sysroots since 09.00. These are needed for cross compiling QT, OpenGLES and other graphics applications. Signed-off-by: Sai Sree Kartheek Adivi --- .../packagegroup-arago-tisdk-graphics-sdk-target.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb index acb06558..6f576a18 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb @@ -9,6 +9,7 @@ inherit packagegroup RDEPENDS:${PN} = "\ libegl-dev \ libdrm-dev \ + libgles3-mesa-dev \ wayland-dev \ weston-dev \ ${@bb.utils.contains('MACHINE_FEATURES', 'gc320', 'ti-gc320-libs-dev', '', d)} \