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 25E25C27C52 for ; Tue, 4 Jun 2024 16:05:12 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.25707.1717517109710988500 for ; Tue, 04 Jun 2024 09:05:10 -0700 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 D383740C8E; Tue, 4 Jun 2024 16:05:08 +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 vpanu5yGKYG4; Tue, 4 Jun 2024 16:05:08 +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 146BA40C1C; Tue, 4 Jun 2024 16:05:04 +0000 (UTC) Received: by mail.denix.org (Postfix, from userid 1000) id BD5BA163F84; Tue, 4 Jun 2024 12:05:03 -0400 (EDT) Date: Tue, 4 Jun 2024 12:05:03 -0400 From: Denys Dmytriyenko To: reatmon@ti.com Cc: Praneeth Bajjuri , Denys Dmytriyenko , meta-arago@lists.yoctoproject.org Subject: Re: [meta-arago][scarthgap][PATCH] arm-ddr-bandwidth: Bandwidth script for testing Message-ID: <20240604160503.GM21287@denix.org> References: <20240603161039.16176-1-reatmon@ti.com> <20240603161039.16176-2-reatmon@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240603161039.16176-2-reatmon@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 ; Tue, 04 Jun 2024 16:05:12 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/15362 On Mon, Jun 03, 2024 at 11:10:39AM -0500, Ryan Eatmon via lists.yoctoproject.org wrote: > We need to pull a single script in from the matrix-gui packages since > they are getting removed. The runLmDDRBandwidth.sh is required for the > ti-test flow. > > Signed-off-by: Ryan Eatmon > --- > .../arm-ddr-bandwidth/arm-ddr-bandwidth.bb | 23 +++++++++++++++++++ > .../recipes-core/packagegroups/ti-test.bb | 1 + > 2 files changed, 24 insertions(+) > create mode 100644 meta-arago-test/recipes-benchmark/arm-ddr-bandwidth/arm-ddr-bandwidth.bb > > diff --git a/meta-arago-test/recipes-benchmark/arm-ddr-bandwidth/arm-ddr-bandwidth.bb b/meta-arago-test/recipes-benchmark/arm-ddr-bandwidth/arm-ddr-bandwidth.bb > new file mode 100644 > index 00000000..fc4aea94 > --- /dev/null > +++ b/meta-arago-test/recipes-benchmark/arm-ddr-bandwidth/arm-ddr-bandwidth.bb > @@ -0,0 +1,23 @@ > +SUMMARY = "Benchmark for checking DDR bandwidth" > +HOMEPAGE = "https://git.ti.com/cgit/matrix-gui-v2/matrix-gui-v2-apps/tree/arm_apps/arm_ddr_bandwidth/runLmDDRBandwidth.sh" > +LICENSE = "CC-BY-SA-3.0" > +LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=6e0ae7214f6c74c149cb25f373057fa9" Isn't the default here ^^^ relative to ${S} anyway? > + > +PV = "1.0" > + > +SRC_URI = " \ > + https://git.ti.com/cgit/matrix-gui-v2/matrix-gui-v2-apps/plain/arm_apps/arm_ddr_bandwidth/runLmDDRBandwidth.sh;name=runLmDDRBandwidth \ > + https://git.ti.com/cgit/matrix-gui-v2/matrix-gui-v2-apps/plain/LICENSE;name=license \ > +" > +SRC_URI[runLmDDRBandwidth.sha256sum] = "67997d721b351344d8788200a15bb3640093045bc25f2b5307dd331ebd1556a3" > +SRC_URI[license.sha256sum] = "7febd1df714fa4b1e44fe0b0f73ceac7f9b9f97326695a0cc7074bd6c8d263e3" > + > +S = "${WORKDIR}" > + > +do_install() { > + install -d ${D}${datadir}/matrix-gui-2.0/apps > + install -m 0644 ${S}/runLmDDRBandwidth.sh ${D}${datadir}/matrix-gui-2.0/apps/runLmDDRBandwidth.sh > +} > + > +FILES:${PN} = "${datadir}/matrix-gui-2.0/apps/runLmDDRBandwidth.sh" > + > diff --git a/meta-arago-test/recipes-core/packagegroups/ti-test.bb b/meta-arago-test/recipes-core/packagegroups/ti-test.bb > index 4dbd9fca..b71c374b 100644 > --- a/meta-arago-test/recipes-core/packagegroups/ti-test.bb > +++ b/meta-arago-test/recipes-core/packagegroups/ti-test.bb > @@ -69,6 +69,7 @@ TI_TEST_BASE:append:armv7ve = " \ > # timestamping > TI_TEST_TI_TOOLS = " \ > arm-benchmarks \ > + arm-ddr-bandwidth \ > cpuloadgen \ > input-utils \ > ltp-ddt \ > -- > 2.17.1