From patchwork Tue May 16 14:31:55 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Eatmon X-Patchwork-Id: 24004 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 12F9FC77B7A for ; Tue, 16 May 2023 14:32:03 +0000 (UTC) Received: from fllv0015.ext.ti.com (fllv0015.ext.ti.com [198.47.19.141]) by mx.groups.io with SMTP id smtpd.web10.23508.1684247519819905449 for ; Tue, 16 May 2023 07:32:00 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=s+NHZaJm; spf=pass (domain: ti.com, ip: 198.47.19.141, mailfrom: reatmon@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 34GEVvgx044731; Tue, 16 May 2023 09:31:57 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1684247517; bh=G3ZCDy1LyPUuyzu8PJVefFab8tlJHbAkDEv4lhYzgjc=; h=From:To:Subject:Date; b=s+NHZaJmTCWThDUyNY5VkJp/8CuEN+hx0cPVR0aqzI9I4OerW+S0yirXTaA7G6/FD ChZDiSmWsSg6/pIfDSDjf041iJArHoqhNYBKXyamSn0pSFpbv4mWsTk888oSDSIu6q OD6h1wVX/ZfXg3+fWPkystTKLZUdAv7ktP5jkMaU= Received: from DFLE109.ent.ti.com (dfle109.ent.ti.com [10.64.6.30]) by lelv0266.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 34GEVvqq075050 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 16 May 2023 09:31:57 -0500 Received: from DFLE108.ent.ti.com (10.64.6.29) by DFLE109.ent.ti.com (10.64.6.30) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Tue, 16 May 2023 09:31:56 -0500 Received: from fllv0039.itg.ti.com (10.64.41.19) by DFLE108.ent.ti.com (10.64.6.29) 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; Tue, 16 May 2023 09:31:56 -0500 Received: from uda0214219 (ileaxei01-snat2.itg.ti.com [10.180.69.6]) by fllv0039.itg.ti.com (8.15.2/8.15.2) with ESMTP id 34GEVux7087577; Tue, 16 May 2023 09:31:56 -0500 Received: from reatmon by uda0214219 with local (Exim 4.90_1) (envelope-from ) id 1pyviW-0000WQ-8P; Tue, 16 May 2023 09:31:56 -0500 From: Ryan Eatmon To: Praneeth Bajjuri , Denys Dmytriyenko , Subject: [meta-arago][master/kirkstone][PATCH 1/2] ltp-ddt: Intial LTS migration version Date: Tue, 16 May 2023 09:31:55 -0500 Message-ID: <20230516143156.1961-1-reatmon@ti.com> X-Mailer: git-send-email 2.17.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 ; Tue, 16 May 2023 14:32:03 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14400 From: LCPD Automation Script As part of the initial LTS migration, move to the latest commits for the various repos. - ltp-ddt_20230127 Going forward all updates will come from the CICD flow. Signed-off-by: Ryan Eatmon --- meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20230127.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20230127.bb b/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20230127.bb index d56c5b7b..c14ddba7 100644 --- a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20230127.bb +++ b/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20230127.bb @@ -14,7 +14,7 @@ PE = "1" PR = "r7" PV:append = "+git${SRCPV}" -SRCREV = "7f2fc4b7c972f2f188836c739a7175fad2f2b288" +SRCREV = "41e97da730b9064d9fc5337afb515a8b6f752099" BRANCH ?= "master" SRC_URI:remove = "git://github.com/linux-test-project/ltp.git;branch=master;protocol=https" From patchwork Tue May 16 14:31:56 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Eatmon X-Patchwork-Id: 24003 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 1306CC7EE25 for ; Tue, 16 May 2023 14:32:03 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web11.23384.1684247519171784213 for ; Tue, 16 May 2023 07:31:59 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=r1WfFpKt; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: reatmon@ti.com) Received: from lelv0266.itg.ti.com ([10.180.67.225]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 34GEVuVx022247; Tue, 16 May 2023 09:31:56 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1684247517; bh=XiQRZWr9F0sMYQhWQ0Fdh00hKpPmi8/Ex9e0uYEbhS4=; h=From:To:Subject:Date:In-Reply-To:References; b=r1WfFpKtWwjF7I0hByj+F+dEb+Kqwm4LjlWBbX+GXEV8gyByBYZIHBxKldPg2t102 dZVFqGcZ0W6Sc5jSG7c0/JtE5uLbrN0bHuuksnePNm99iHmdjqQq2zQzAg4kQRi3eO cDp9TdWJbIZsP++ky5xx3TEyWzBFDFoOSMFPFY6o= Received: from DFLE114.ent.ti.com (dfle114.ent.ti.com [10.64.6.35]) by lelv0266.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 34GEVuIv075047 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 16 May 2023 09:31:56 -0500 Received: from DFLE114.ent.ti.com (10.64.6.35) by DFLE114.ent.ti.com (10.64.6.35) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Tue, 16 May 2023 09:31:56 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) by DFLE114.ent.ti.com (10.64.6.35) 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; Tue, 16 May 2023 09:31:56 -0500 Received: from uda0214219 (ileaxei01-snat2.itg.ti.com [10.180.69.6]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 34GEVuII003797; Tue, 16 May 2023 09:31:56 -0500 Received: from reatmon by uda0214219 with local (Exim 4.90_1) (envelope-from ) id 1pyviW-0000WS-CD; Tue, 16 May 2023 09:31:56 -0500 From: Ryan Eatmon To: Praneeth Bajjuri , Denys Dmytriyenko , Subject: [meta-arago][master/kirkstone][PATCH 2/2] ltp-ddt: Remove older version. Date: Tue, 16 May 2023 09:31:56 -0500 Message-ID: <20230516143156.1961-2-reatmon@ti.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20230516143156.1961-1-reatmon@ti.com> References: <20230516143156.1961-1-reatmon@ti.com> 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 ; Tue, 16 May 2023 14:32:03 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14399 Now that we have 20230127 in place, we can remove this older recipe. Signed-off-by: Ryan Eatmon --- .../ltp-ddt/ltp-ddt_20210524.bb | 47 ------------------- 1 file changed, 47 deletions(-) delete mode 100644 meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb diff --git a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb b/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb deleted file mode 100644 index 03f6d4f3..00000000 --- a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb +++ /dev/null @@ -1,47 +0,0 @@ -FILESEXTRAPATHS:prepend := "${COREBASE}/meta/recipes-extended/ltp/ltp:" -FILESEXTRAPATHS:prepend := "${ARAGOBASE}/meta-arago-extras/recipes-extended/ltp/ltp:" - -require recipes-extended/ltp/ltp_${PV}.bb - -SUMMARY = "Embedded Linux Device Driver Tests based on Linux Test Project" -HOMEPAGE = "https://git.ti.com/cgit/test-automation/ltp-ddt/" - -PROVIDES += "ltp" - -DEPENDS += "alsa-lib" - -PE = "1" -PR = "r7" -PV:append = "+git${SRCPV}" - -SRCREV = "0b51638be46d1e00e2e7e6c4c65dcff738ff2e60" -BRANCH ?= "master" - -SRC_URI:remove = "git://github.com/linux-test-project/ltp.git;protocol=https;branch=master" -SRC_URI:prepend = "git://git.ti.com/git/test-automation/ltp-ddt.git;protocol=https;branch=${BRANCH} " - -SRC_URI:append = "https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/plain/include/uapi/linux/rpmsg_rpc.h?h=ti-linux-5.10.y;name=rpmsg_rpc;subdir=linux;downloadfilename=rpmsg_rpc.h" -SRC_URI[rpmsg_rpc.sha256sum] = "cd237f40a37520a1f2df19fbfeefd00c0a5ad68efeaba9ba0fba60ca16ea09be" - -export prefix = "/opt/ltp" -export exec_prefix = "/opt/ltp" - -EXTRA_OEMAKE:append = " \ - KERNEL_USR_INC=${WORKDIR} \ - ALSA_INCPATH=${STAGING_INCDIR} \ - ALSA_LIBPATH=${STAGING_LIBDIR} \ -" - -RDEPENDS:${PN} += "\ - acl \ - at \ - pm-qa \ - serialcheck \ - memtester \ -" - -do_install:prepend() { - # Upstream ltp recipe wants to remove this test case in do_install - install -d ${D}${prefix}/runtest/ - echo "memcg_stress" >> ${D}${prefix}/runtest/controllers -}