From mboxrd@z Thu Jan 1 00:00:00 1970 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 91BECC282D1 for ; Thu, 6 Mar 2025 23:15:27 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.1967.1741302918034186964 for ; Thu, 06 Mar 2025 15:15:18 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: denix.org, ip: 64.68.198.64, mailfrom: denis@denix.org) Received: from localhost (localhost [127.0.0.1]) by mailout4.zoneedit.com (Postfix) with ESMTP id 20B2640C2E; Thu, 6 Mar 2025 23:15:17 +0000 (UTC) Received: from mailout4.zoneedit.com ([127.0.0.1]) by localhost (zmo14-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id D-3JHz1i7BvT; Thu, 6 Mar 2025 23:15:17 +0000 (UTC) Received: from mail.denix.org (pool-100-15-87-159.washdc.fios.verizon.net [100.15.87.159]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id E84D440B13; Thu, 6 Mar 2025 23:15:13 +0000 (UTC) Received: by mail.denix.org (Postfix, from userid 1000) id 1A8541642DE; Thu, 6 Mar 2025 18:15:13 -0500 (EST) Date: Thu, 6 Mar 2025 18:15:13 -0500 From: Denys Dmytriyenko To: b-brnich@ti.com Cc: meta-ti@lists.yoctoproject.org, Ryan Eatmon , Darren Etheridge Subject: Re: [meta-ti] [scarthgap][PATCH 1/2] ti-bsp: ti-img-encode-decode: Add Recipe for Building VXE-VXD Out-of-Tree Module Message-ID: <20250306231513.GP1879@denix.org> References: <20250306203749.794759-1-b-brnich@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250306203749.794759-1-b-brnich@ti.com> User-Agent: Mutt/1.5.20 (2009-06-14) 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, 06 Mar 2025 23:15:27 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/18362 On Thu, Mar 06, 2025 at 02:37:48PM -0600, Brandon Brnich via lists.yoctoproject.org wrote: > During 10.0 LTS bringup, the decision was made that it would be the last LTS > that carried the IMG VXE and VXD driver in tree. Driver is now hosted on > git.ti.com. This recipe is responsible for pulling in the driver, > building it, and packaging it within the J721e SDK. > > Signed-off-by: Brandon Brnich > --- > > This build was tested by changing the kernel to point towards latest > head that has relevant device tree changes and config options. Build is > successful with those changes and no warnings are present. > > .../ti-vxe-vxd-driver_6.12.bb | 23 +++++++++++++++++++ > 1 file changed, 23 insertions(+) > create mode 100644 meta-ti-bsp/recipes-bsp/ti-img-encode-decode/ti-vxe-vxd-driver_6.12.bb > > diff --git a/meta-ti-bsp/recipes-bsp/ti-img-encode-decode/ti-vxe-vxd-driver_6.12.bb b/meta-ti-bsp/recipes-bsp/ti-img-encode-decode/ti-vxe-vxd-driver_6.12.bb > new file mode 100644 > index 00000000..fa2d3792 > --- /dev/null > +++ b/meta-ti-bsp/recipes-bsp/ti-img-encode-decode/ti-vxe-vxd-driver_6.12.bb > @@ -0,0 +1,23 @@ > +DESCRIPTION = "Kernel drivers for the VXE384 and D5500 Video Accelerators found in the J721E TI SoC" Shorter SUMMARY is missing? > +LICENSE = "GPL-2.0-only" > +LIC_FILES_CHKSUM = "file://README;beginline=11;endline=12;md5=ad10b552e357ac443ec5dd2e02912b1b" > + > +inherit module > + > +PACKAGE_ARCH = "${MACHINE_ARCH}" > + > +COMPATIBLE_MACHINE = "j721e" > + > +DEPENDS += "virtual/kernel" > + > +BRANCH = "scarthgap/k${PV}" > + > +SRC_URI = "git://git.ti.com/multimedia/img-vxe-vxd.git;protocol=https;branch=${BRANCH}" > + > +SRCREV = "99d063aa0ef53633057042570411b84bd967624b" > + > +TARGET_PRODUCT:j721e = "j721e_linux" > + > +S = "${WORKDIR}/git" > + > +EXTRA_OEMAKE += 'KERNEL_DIR="${STAGING_KERNEL_DIR}" PREFIX="${D}"' > -- > 2.34.1