From patchwork Tue Sep 13 04:01:55 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12722 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 0199BC6FD37 for ; Tue, 13 Sep 2022 04:02:57 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.889.1663041767718244754 for ; Mon, 12 Sep 2022 21:02:48 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 20B0F40D74 for ; Tue, 13 Sep 2022 04:02:47 +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 9hrCxZMwJrjz for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 0EAC640D4E for ; Tue, 13 Sep 2022 04:02:46 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 47E541749C8 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 01/52] devmem2: remove upstreamed fix Date: Tue, 13 Sep 2022 04:01:55 +0000 Message-Id: <20220913040246.2365077-2-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13987 From: Denys Dmytriyenko As devmem2 was updated revamped in kirkstone upstream, drop local fix. Signed-off-by: Denys Dmytriyenko --- .../recipes-support/devmem2/devmem2.bbappend | 5 --- ...ort-different-page-sizes-at-run-time.patch | 35 ------------------- 2 files changed, 40 deletions(-) delete mode 100644 meta-arago-extras/recipes-support/devmem2/devmem2.bbappend delete mode 100644 meta-arago-extras/recipes-support/devmem2/devmem2/0001-devmem2-support-different-page-sizes-at-run-time.patch diff --git a/meta-arago-extras/recipes-support/devmem2/devmem2.bbappend b/meta-arago-extras/recipes-support/devmem2/devmem2.bbappend deleted file mode 100644 index f282b247..00000000 --- a/meta-arago-extras/recipes-support/devmem2/devmem2.bbappend +++ /dev/null @@ -1,5 +0,0 @@ -FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" - -SRC_URI += " \ -file://0001-devmem2-support-different-page-sizes-at-run-time.patch \ -" diff --git a/meta-arago-extras/recipes-support/devmem2/devmem2/0001-devmem2-support-different-page-sizes-at-run-time.patch b/meta-arago-extras/recipes-support/devmem2/devmem2/0001-devmem2-support-different-page-sizes-at-run-time.patch deleted file mode 100644 index 0da0732c..00000000 --- a/meta-arago-extras/recipes-support/devmem2/devmem2/0001-devmem2-support-different-page-sizes-at-run-time.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 0f6af48b2fbc71ec8abe862d3e9eb6da7b03538b Mon Sep 17 00:00:00 2001 -From: Denys Dmytriyenko -Date: Wed, 8 Aug 2018 14:38:00 -0400 -Subject: [PATCH] devmem2: support different page sizes at run-time - -Signed-off-by: Denys Dmytriyenko ---- - devmem2.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/devmem2.c b/devmem2.c -index 68131b2..76af2d6 100644 ---- a/devmem2.c -+++ b/devmem2.c -@@ -53,8 +53,6 @@ - #define FATAL do { fprintf(stderr, "Error at line %d, file %s (%d) [%s]\n", \ - __LINE__, __FILE__, errno, strerror(errno)); exit(1); } while(0) - --#define MAP_SIZE 4096UL --#define MAP_MASK (MAP_SIZE - 1) - - static inline void *fixup_addr(void *addr, size_t size); - -@@ -66,6 +64,8 @@ int main(int argc, char **argv) { - int access_type = 'w'; - char fmt_str[128]; - size_t data_size; -+ unsigned long MAP_SIZE = sysconf(_SC_PAGE_SIZE); -+ unsigned long MAP_MASK = (MAP_SIZE - 1); - - if(argc < 2) { - fprintf(stderr, "\nUsage:\t%s { address } [ type [ data ] ]\n" --- -2.7.4 - From patchwork Tue Sep 13 04:01:56 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12726 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 0A6A6C6FD38 for ; Tue, 13 Sep 2022 04:02:57 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.883.1663041767722473968 for ; Mon, 12 Sep 2022 21:02:48 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 23BB840D4E for ; Tue, 13 Sep 2022 04:02:47 +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 hS2Oz6ReIpAO for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 0FD1740D68 for ; Tue, 13 Sep 2022 04:02:46 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 531D71749CE for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 02/52] wayland: weston: Disable weston systemd service Date: Tue, 13 Sep 2022 04:01:56 +0000 Message-Id: <20220913040246.2365077-3-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:57 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13986 From: Priya N S Disable the weston systemd service since there is a weston initscript that performs touchscreen calibration and other customizations. Signed-off-by: Priya N S Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-graphics/wayland/weston-init.bbappend | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta-arago-distro/recipes-graphics/wayland/weston-init.bbappend b/meta-arago-distro/recipes-graphics/wayland/weston-init.bbappend index 15835c8f..1a32f196 100644 --- a/meta-arago-distro/recipes-graphics/wayland/weston-init.bbappend +++ b/meta-arago-distro/recipes-graphics/wayland/weston-init.bbappend @@ -1,6 +1,6 @@ FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" -PR:append = ".arago10" +PR:append = ".arago11" SRC_URI:append = " \ file://runWeston \ @@ -11,10 +11,13 @@ SRC_URI:append = " \ do_install:append() { install -d ${D}${bindir} install -m 755 ${WORKDIR}/runWeston ${D}${bindir} + rm -rf ${D}${systemd_system_unitdir} install -d ${D}${sysconfdir}/profile.d install -m 0644 ${WORKDIR}/weston.ini ${D}${sysconfdir} install -m 0644 ${WORKDIR}/wayland_env.sh ${D}${sysconfdir}/profile.d/ } +FILES:${PN}:remove = "${systemd_system_unitdir}/weston.service ${systemd_system_unitdir}/weston.socket" FILES:${PN} += "${sysconfdir}/profile.d/* ${sysconfdir}/weston.ini" +SYSTEMD_SERVICE:${PN}:remove = "weston.service weston.socket" From patchwork Tue Sep 13 04:01:57 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12707 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 C3F5DC6FD23 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.887.1663041767718604582 for ; Mon, 12 Sep 2022 21:02:48 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 2C32040D68 for ; Tue, 13 Sep 2022 04:02:47 +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 r0Qm2Tbhi_5L for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 1146B40D6E for ; Tue, 13 Sep 2022 04:02:46 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 54FA91749CF for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 03/52] weston-init: Update initscript for weston-calibration Date: Tue, 13 Sep 2022 04:01:57 +0000 Message-Id: <20220913040246.2365077-4-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13985 From: Priya N S Increase the sleep time before starting the weston-calibrator. It takes some time for the completion of the runWeston script. If the weston-calibration is started before the completion of the runWeston script, the weston-calibrator will fail. Signed-off-by: Priya N S Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-graphics/wayland/weston-init.bbappend | 2 +- meta-arago-distro/recipes-graphics/wayland/weston-init/init | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arago-distro/recipes-graphics/wayland/weston-init.bbappend b/meta-arago-distro/recipes-graphics/wayland/weston-init.bbappend index 1a32f196..28e7ae39 100644 --- a/meta-arago-distro/recipes-graphics/wayland/weston-init.bbappend +++ b/meta-arago-distro/recipes-graphics/wayland/weston-init.bbappend @@ -1,6 +1,6 @@ FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" -PR:append = ".arago11" +PR:append = ".arago12" SRC_URI:append = " \ file://runWeston \ diff --git a/meta-arago-distro/recipes-graphics/wayland/weston-init/init b/meta-arago-distro/recipes-graphics/wayland/weston-init/init index 461b0787..7a80238b 100644 --- a/meta-arago-distro/recipes-graphics/wayland/weston-init/init +++ b/meta-arago-distro/recipes-graphics/wayland/weston-init/init @@ -79,7 +79,7 @@ case "$1" in echo echo "*** To continue, please complete the touchscreen calibration" echo -n "*** by touching the crosshairs on the LCD screen" - sleep 1 + sleep 2 CAL_VALUES=`weston-calibrator|cut -c21-` echo 'SUBSYSTEM=="input", ENV{WL_CALIBRATION}="'$CAL_VALUES'"' > $WS_CALUDEV_FILE echo "." From patchwork Tue Sep 13 04:01:58 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12716 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 B95BFC6FD1F for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.852.1663041767771662772 for ; Mon, 12 Sep 2022 21:02:48 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 3891640D4B for ; Tue, 13 Sep 2022 04:02:47 +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 SwigoGxJQE_s for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 12DB540D73 for ; Tue, 13 Sep 2022 04:02:46 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 56B391749D0 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 04/52] matrix-gui-apps-git: Update SRCREV to latest Date: Tue, 13 Sep 2022 04:01:58 +0000 Message-Id: <20220913040246.2365077-5-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13988 From: Aparna M Update SRCREV to pick up changes to the out-of-board LED blink demo for am64xx-evm Signed-off-by: Aparna M Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc index fb61b340..5d6df788 100644 --- a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc @@ -4,7 +4,7 @@ LICENSE_CHECKSUM = "LICENSE;md5=6e0ae7214f6c74c149cb25f373057fa9" LIC_FILES_CHKSUM := "file://../${LICENSE_CHECKSUM}" SRC_URI = "git://git.ti.com/matrix-gui-v2/matrix-gui-v2-apps.git;protocol=git;branch=${BRANCH}" -SRCREV = "976e775a1275198d3391018ce8115a66d00120a2" +SRCREV = "cad105b0c2b75a90f4def523b4fdbd0b6aa2fe8e" BRANCH = "master" INC_PR = "r76" From patchwork Tue Sep 13 04:01:59 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12715 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 E18FFC6FD2D for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web09.932.1663041769967568928 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 5C09440D88 for ; Tue, 13 Sep 2022 04:02:48 +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 o4jb0JVgn-ME for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 52CE840D87 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 62FEB1749D1 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 05/52] matrix-gui-crypto-demos: Use crypto_apps_script instead of crypto_apps_program Date: Tue, 13 Sep 2022 04:01:59 +0000 Message-Id: <20220913040246.2365077-6-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14005 From: Corentin Labbe In the current situation all crypto tests (like openssl_aes256_encdec.sh) are not copied in final images. There were present in both crypto_apps_program and crypto_apps_script. But crypto_apps_program depended on ti-crypto-examples which is disabled since 2 years now. So let's fallback to original crypto_apps_script. Signed-off-by: Corentin LABBE Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb | 3 --- 1 file changed, 3 deletions(-) diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb index 5e07519a..7dc809a6 100644 --- a/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb @@ -7,9 +7,6 @@ PR = "${INC_PR}.12" PACKAGE_ARCH = "${MACHINE_ARCH}" S = "${WORKDIR}/git/cryptos_apps_scripts" -S:ti33x = "${WORKDIR}/git/cryptos_apps_program" -S:ti43x = "${WORKDIR}/git/cryptos_apps_program" -S:dra7xx = "${WORKDIR}/git/cryptos_apps_program" FILES:${PN} += "${MATRIX_BASE_DIR}/*" From patchwork Tue Sep 13 04:02:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12721 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 0023DC6FD35 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.890.1663041768912066367 for ; Mon, 12 Sep 2022 21:02:49 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 5863C40D79 for ; Tue, 13 Sep 2022 04:02:47 +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 CPVqgX7ESJyX for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 4D27840D6E for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 6E7481749D2 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 06/52] ti-tisdk-setup: Update SRCREV to latest Date: Tue, 13 Sep 2022 04:02:00 +0000 Message-Id: <20220913040246.2365077-7-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13989 From: Aparna M Update SRCREV to include updates to create-sdcard.sh, uboot setup env scripts and tftp support for HS EVMs. Signed-off-by: Aparna M Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb index 5524ffcb..d312c59d 100644 --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://setup.sh;beginline=3;endline=31;md5=fc4b04a33df6d892c PR = "r46" BRANCH ?= "master" -SRCREV = "42a8379fda829f34c374ddfca0242a479a84d454" +SRCREV = "22f4e5af1894a60d9e7d04caf83f26a556c14eca" SRC_URI = "git://arago-project.org/git/projects/tisdk-setup-scripts.git;protocol=git;branch=${BRANCH}" S = "${WORKDIR}/git" From patchwork Tue Sep 13 04:02:01 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12723 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 EA319C6FD33 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web09.929.1663041768993542043 for ; Mon, 12 Sep 2022 21:02:49 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 6895840D7E for ; Tue, 13 Sep 2022 04:02:47 +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 UNKCKPTVzKm7 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 517E440D76 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 79C8A1749D3 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 07/52] packagegroup-arago-base-tisdk: Fix issue with optee pkgs not being included Date: Tue, 13 Sep 2022 04:02:01 +0000 Message-Id: <20220913040246.2365077-8-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13992 From: Yogesh Siraswar In core-sdk 7.1 meta-ti OPTEEMACHINE description was updated to use combined OPTEE_MACHINE and OPTEE_FLAVOR. 8ac0c757 conf/machine: pass OPTEEFLAVOR via OPTEEMACHINE as - This caused the OPTEEMACHINE check to fail that was used to add optee-client and optee-test. Fixing the issue by using OPTEEOUTPUTMACHINE since it still uses ti/k3 as parameter. Signed-off-by: Yogesh Siraswar Reviewed-by: Denys Dmytriyenko Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../packagegroups/packagegroup-arago-base-tisdk.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb index a27a13ef..7812f981 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb @@ -1,6 +1,6 @@ DESCRIPTION = "Additional packages beyond console packages shared by TI SDKs" LICENSE = "MIT" -PR = "r22" +PR = "r23" PACKAGE_ARCH = "${MACHINE_ARCH}" @@ -26,5 +26,5 @@ RDEPENDS:${PN} = "\ nfs-utils-client \ cifs-utils \ phytool \ - ${@bb.utils.contains_any('OPTEEMACHINE', 'ti k3', "${OPTEE_PKGS}", "", d)} \ + ${@bb.utils.contains_any('OPTEEOUTPUTMACHINE', 'ti k3', "${OPTEE_PKGS}", "", d)} \ " From patchwork Tue Sep 13 04:02:02 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12708 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 B9588C6FD1E for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.891.1663041768923537296 for ; Mon, 12 Sep 2022 21:02:49 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 59CFC40D7D for ; Tue, 13 Sep 2022 04:02:47 +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 SnE8yMA1FKDA for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 4D7A540D73 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 7B7A41749D4 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 08/52] ti-tisdk-setup: Fixup to bump up PR Date: Tue, 13 Sep 2022 04:02:02 +0000 Message-Id: <20220913040246.2365077-9-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13991 From: Aparna M Bump up PR corresponding to latest SRCREV update Signed-off-by: Aparna M Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb index d312c59d..6b3b85d5 100644 --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb @@ -2,7 +2,7 @@ DESCRIPTION = "Package containing scripts to setup the development host and targ LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://setup.sh;beginline=3;endline=31;md5=fc4b04a33df6d892c9f4d4a9d92b945e" -PR = "r46" +PR = "r47" BRANCH ?= "master" SRCREV = "22f4e5af1894a60d9e7d04caf83f26a556c14eca" From patchwork Tue Sep 13 04:02:03 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12718 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 01164C6FD36 for ; Tue, 13 Sep 2022 04:02:57 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.888.1663041768960669026 for ; Mon, 12 Sep 2022 21:02:49 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 601F740D6E for ; Tue, 13 Sep 2022 04:02:47 +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 erkqXeV7ue7a for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 4EF8740D75 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 86B341749D5 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 09/52] recipes-core: images: Add tisdk-thinlinux-image Date: Tue, 13 Sep 2022 04:02:03 +0000 Message-Id: <20220913040246.2365077-10-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13990 From: Nishanth Menon Currently we have tisdk-tiny-image tisdk-base-image and tisdk-default-image which serve certain purpose for the users. However, These are either too heavy or too pointed towards validation. Hence, let us introduce a basic thinlinux image that has the basic system configured for out of box container usage without changing the meaning of existing image content definitions. Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../images/tisdk-thinlinux-image.bb | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb diff --git a/meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb b/meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb new file mode 100644 index 00000000..b344cdbf --- /dev/null +++ b/meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb @@ -0,0 +1,24 @@ +# Arago TI Thin Linux image +# Minimal bootable image with container to start the next complex system up. + +require arago-image.inc + +SPLASH = "${@bb.utils.contains('MACHINE_FEATURES','gpu','psplash','',d)}" + +# Allow users to tack on additional packages as interesting. +ARAGO_THIN_IMAGE_EXTRA_INSTALL ?= "" + +IMAGE_INSTALL += "\ + packagegroup-arago-base \ + packagegroup-arago-console \ + packagegroup-arago-base-tisdk \ + ${@bb.utils.contains('MACHINE_FEATURES','gpu','packagegroup-arago-tisdk-graphics','',d)} \ + docker \ + ${ARAGO_THIN_IMAGE_EXTRA_INSTALL} \ +" + +export IMAGE_BASENAME = "tisdk-thinlinux-image" + +# Disable ubi/ubifs as the filesystem requires more space than is +# available on the HW. +IMAGE_FSTYPES:remove:omapl138 = "ubifs ubi" From patchwork Tue Sep 13 04:02:04 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12709 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 BA4D3C6FD20 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.892.1663041768996842104 for ; Mon, 12 Sep 2022 21:02:49 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 6894540D75 for ; Tue, 13 Sep 2022 04:02:47 +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 zNHI7pTv1y1L for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 522A440D78 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 886E51749D6 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 10/52] images: Build tisdk-thinlinux-image with tisdk-core-bundle Date: Tue, 13 Sep 2022 04:02:04 +0000 Message-Id: <20220913040246.2365077-11-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13995 From: Ryan Eatmon Add tisdk-thinlinux-image to the list of TARGET_IMAGES for tisdk-core-bundle. Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc index cf4d0298..f4cceb15 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc +++ b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc @@ -27,7 +27,7 @@ DTB_FILTER:am65xx = "am65" DTB_FILTER:j7 = "j721e" # List of target side images to build for the SDK -TARGET_IMAGES = "tisdk-base-image tisdk-default-image" +TARGET_IMAGES = "tisdk-base-image tisdk-default-image tisdk-thinlinux-image" TISDK_TOOLCHAIN = "${@bb.utils.contains('MACHINE_FEATURES','gpu','meta-toolchain-arago-tisdk','meta-toolchain-arago-tisdk-server',d)}" TOOLCHAIN_SUFFIX = "${@bb.utils.contains('MACHINE_FEATURES','gpu','-tisdk','-tisdk-server',d)}" From patchwork Tue Sep 13 04:02:05 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12701 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 A6BD2C6FD18 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.853.1663041769035164702 for ; Mon, 12 Sep 2022 21:02:49 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 6F6B740D76 for ; Tue, 13 Sep 2022 04:02:47 +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 fNIBC64KfApd for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 598B340D7C for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 931EB1749D7 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 11/52] Revert "tisdk-tiny-image: remove packagedata task breaking initramfs packaging" Date: Tue, 13 Sep 2022 04:02:05 +0000 Message-Id: <20220913040246.2365077-12-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13996 From: Nishanth Menon This reverts commit a75e468a372d4f5c2c32a179d4d2219899b5190c. Commit a75e468a372d ("tisdk-tiny-image: remove packagedata task breaking initramfs packaging") as discussed in [1] is no longer necessary as the offending patches have been reverted in dunfell. [1] https://lists.yoctoproject.org/g/meta-arago/message/13624 Suggested-by: Denys Dmytriyenko Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb b/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb index a3db6ac2..9ea91701 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb +++ b/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb @@ -13,6 +13,4 @@ IMAGE_INSTALL = " \ ${ARAGO_TINY_IMAGE_EXTRA_INSTALL} \ " -deltask do_packagedata - export IMAGE_BASENAME = "tisdk-tiny-image" From patchwork Tue Sep 13 04:02:06 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12705 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 C3113C6FD21 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.889.1663041769037531252 for ; Mon, 12 Sep 2022 21:02:49 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 75AC540D7A for ; Tue, 13 Sep 2022 04:02:47 +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 QNtvWCVn3qvj for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 60BAB40D73 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 9DEB41749D8 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 12/52] tisdk-tiny-image: Split common components into include file Date: Tue, 13 Sep 2022 04:02:06 +0000 Message-Id: <20220913040246.2365077-13-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13994 From: Nishanth Menon Lets split the common pieces for creating a tiny image into an include file. This can then be used to incrementally build additional images as well. Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-core/images/arago-tiny-image.inc | 9 +++++++++ .../recipes-core/images/tisdk-tiny-image.bb | 11 ++++------- 2 files changed, 13 insertions(+), 7 deletions(-) create mode 100644 meta-arago-distro/recipes-core/images/arago-tiny-image.inc diff --git a/meta-arago-distro/recipes-core/images/arago-tiny-image.inc b/meta-arago-distro/recipes-core/images/arago-tiny-image.inc new file mode 100644 index 00000000..242e763c --- /dev/null +++ b/meta-arago-distro/recipes-core/images/arago-tiny-image.inc @@ -0,0 +1,9 @@ +ARAGO_SYSVINIT = "1" + +require arago-image.inc + +IMAGE_FEATURES:remove = "splash" + +IMAGE_INSTALL = " \ + packagegroup-arago-sysvinit-boot \ +" diff --git a/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb b/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb index 9ea91701..00e4e6ae 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb +++ b/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb @@ -1,15 +1,12 @@ -ARAGO_SYSVINIT = "1" +ARAGO_TINY_IMAGE_EXTRA_INSTALL ?= "" -require arago-image.inc +require arago-tiny-image.inc -IMAGE_FEATURES:remove = "package-management splash" +IMAGE_FEATURES:remove = "package-management" IMAGE_FSTYPES += "cpio cpio.xz" -ARAGO_TINY_IMAGE_EXTRA_INSTALL ?= "" - -IMAGE_INSTALL = " \ - packagegroup-arago-sysvinit-boot \ +IMAGE_INSTALL += " \ ${ARAGO_TINY_IMAGE_EXTRA_INSTALL} \ " From patchwork Tue Sep 13 04:02:07 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12711 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 C3E43C6FD22 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.889.1663041772224426660 for ; Mon, 12 Sep 2022 21:02:52 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 AB3E540D44 for ; Tue, 13 Sep 2022 04:02:51 +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 D7af7MzoZOg9 for ; Tue, 13 Sep 2022 04:02:51 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 689CC40D7F for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 9F9BE1749D9 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 13/52] tisdk-tiny-image: Add some usability notes Date: Tue, 13 Sep 2022 04:02:07 +0000 Message-Id: <20220913040246.2365077-14-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14029 From: Nishanth Menon Lets clarify the usage of tiny image as something meant as a building block and not something that folks can directly use. Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-core/images/tisdk-tiny-image.bb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb b/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb index 00e4e6ae..8117ebc5 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb +++ b/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb @@ -1,3 +1,13 @@ +SUMMARY = "Arago TI SDK super minimal base image for initramfs" + +DESCRIPTION = "Image meant for basic boot of linux kernel. Intended as\ + bare system, this image does not package the kernel in the\ + standard /boot folder in rootfs. Instead, it provides a base\ + rootfs allowing kernel to be deployed elsewhere\ + (tftp/separate boot partition/jtag log etc..) and boot\ + the image.\ +" + ARAGO_TINY_IMAGE_EXTRA_INSTALL ?= "" require arago-tiny-image.inc From patchwork Tue Sep 13 04:02:08 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12703 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 AF3EEC6FD1C for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.884.1663041769044753293 for ; Mon, 12 Sep 2022 21:02:49 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 7BD3240D73 for ; Tue, 13 Sep 2022 04:02:47 +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 Rg7N57J9VSvP for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 721F040D78 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id ABDF31749DA for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 14/52] tisdk-base-image: Reformat documentation and clarify usage Date: Tue, 13 Sep 2022 04:02:08 +0000 Message-Id: <20220913040246.2365077-15-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13993 From: Nishanth Menon Reformat the documentation to indicate the summary and description in a standardized manner. Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-core/images/tisdk-base-image.bb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta-arago-distro/recipes-core/images/tisdk-base-image.bb b/meta-arago-distro/recipes-core/images/tisdk-base-image.bb index 1f6928b1..13bb8272 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-base-image.bb +++ b/meta-arago-distro/recipes-core/images/tisdk-base-image.bb @@ -1,5 +1,7 @@ -# Arago TI SDK base image with test tools -# Suitable for initramfs +SUMMARY = "Arago TI SDK base image with test tools" + +DESCRIPTION = "Arago SDK base image suitable for initramfs containing\ + comprehensive test tools." require arago-image.inc From patchwork Tue Sep 13 04:02:09 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12691 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 84708C6FA95 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.855.1663041770015753737 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 708F540D68 for ; Tue, 13 Sep 2022 04:02:48 +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 riFYIAohFfbP for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 64C1540D77 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id B77941749DB for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 15/52] tisdk-default-image: Reformat documentation and clarify usage Date: Tue, 13 Sep 2022 04:02:09 +0000 Message-Id: <20220913040246.2365077-16-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14009 From: Nishanth Menon Reformat the documentation to indicate the summary and description in a standardized manner. Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-core/images/tisdk-default-image.bb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta-arago-distro/recipes-core/images/tisdk-default-image.bb b/meta-arago-distro/recipes-core/images/tisdk-default-image.bb index cd0f71b7..b82fce59 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-default-image.bb +++ b/meta-arago-distro/recipes-core/images/tisdk-default-image.bb @@ -1,4 +1,7 @@ -# Arago TI SDK full filesystem image +SUMMARY = "Arago TI SDK full filesystem image" + +DESCRIPTION = "Complete Arago TI SDK filesystem image containing complete\ + applications and packages to entitle the SoC." require arago-image.inc From patchwork Tue Sep 13 04:02:10 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12688 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 84D28C6FA97 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.893.1663041770024586062 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 75A5040D4E for ; Tue, 13 Sep 2022 04:02:48 +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 CPN0Fe8KL2FF for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 6864F40D87 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id C24971749DC for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 16/52] tisdk-thinlinux-image: Reformat documentation Date: Tue, 13 Sep 2022 04:02:10 +0000 Message-Id: <20220913040246.2365077-17-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14007 From: Nishanth Menon Reformat the documentation to indicate the summary and description in a standardized manner. Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-core/images/tisdk-thinlinux-image.bb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb b/meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb index b344cdbf..8827ac16 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb +++ b/meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb @@ -1,5 +1,7 @@ -# Arago TI Thin Linux image -# Minimal bootable image with container to start the next complex system up. +SUMMARY = "Arago TI SDK Thin Linux image" + +DESCRIPTION = "Minimal bootable image with container to start the next\ + complex system up." require arago-image.inc From patchwork Tue Sep 13 04:02:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12680 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 53309C6FA82 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.890.1663041774266393255 for ; Mon, 12 Sep 2022 21:02:54 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 B4B1C40D44 for ; Tue, 13 Sep 2022 04:02:53 +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 0VppcP_A5UNp for ; Tue, 13 Sep 2022 04:02:53 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 691F140D89 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id CD59F1666A7 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 17/52] tisdk-core-bundle: Add documentation to clarify usage Date: Tue, 13 Sep 2022 04:02:11 +0000 Message-Id: <20220913040246.2365077-18-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14031 From: Nishanth Menon Add documentation to the core-bundle to explain the usage and intent of the build configuration. Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb index 36693ab0..27e5f6db 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb +++ b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb @@ -1,3 +1,10 @@ +SUMMARY = "Installer package for TI SDK - NOT for direct use on target" + +DESCRIPTION = "This creates an installer including all the default images\ + recommended including source, binaries, filesystems, etc.\ + for TI SDK. This is meant to be used on the host system.\ +" + require tisdk-core-bundle.inc DEPLOY_SPL_NAME:omapl138 = "" From patchwork Tue Sep 13 04:02:12 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12719 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 E162DC6FD2B for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.885.1663041770073988484 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 7BAB640D87 for ; Tue, 13 Sep 2022 04:02:48 +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 c8stFsVTDYWd for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 69EBE40D8A for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id D951F1749C8 for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 18/52] packagegroups: Add a new bootstrap package group Date: Tue, 13 Sep 2022 04:02:12 +0000 Message-Id: <20220913040246.2365077-19-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14008 From: Nishanth Menon Lets try and create a minimal package group for board bringup. Lets call this basic system necessary for board bringup as "bootstrap". Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../packagegroup-arago-bootstrap.bb | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb new file mode 100644 index 00000000..e7f852da --- /dev/null +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb @@ -0,0 +1,53 @@ +SUMMARY = "Task to install additional utilities for initial board bringup" +LICENSE = "MIT" +PR = "r0" + +PACKAGE_ARCH = "${MACHINE_ARCH}" + +inherit packagegroup + +UTILS = " \ + arm-benchmarks \ + evtest \ + memtester \ + nbench-byte \ + pcitest \ + serialcheck \ + yavta \ + hdparm \ + i2c-tools \ + libdrm-tests \ + rt-tests \ + iozone3 \ + mtd-utils-ubifs-tests \ + net-tools \ + ethtool \ + pciutils \ + rng-tools \ + stress-ng \ + iperf \ + lmbench \ + usbutils \ + devmem2 \ + phytool \ +" + +UTILS:append:ti33x = " \ + omapconf \ +" + +UTILS:append:ti43x = " \ + omapconf \ +" + +UTILS:append:omap-a15 = " \ + omapconf \ +" + +UTILS:append:k3 = " \ + k3conf \ +" + +RDEPENDS_${PN} = "\ + ${UTILS} \ +" From patchwork Tue Sep 13 04:02:13 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12679 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 576BBC54EE9 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.900.1663041774268194438 for ; Mon, 12 Sep 2022 21:02:54 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 B6B5140D6E for ; Tue, 13 Sep 2022 04:02:53 +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 EmGaoNBzBxuV for ; Tue, 13 Sep 2022 04:02:53 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 69EFE40D8B for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id E48AB1749CE for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 19/52] recipes-core: images: Add a basic bootstrap base image Date: Tue, 13 Sep 2022 04:02:13 +0000 Message-Id: <20220913040246.2365077-20-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14032 From: Nishanth Menon Since we do not wish to modify the tiny-image from anything but really tiny, lets use that infrastructure and add the bootstrap package group to create initramfs (not exactly a completely usable system) which can be used for basic board bringup. This generates cpio around 36-40MB which should be usually fine for even smaller systems (Ofcourse, this is much larger than tiny-image which is around 6MB size). The packages are organized per size to allow easier customization if desired. Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../images/tisdk-bootstrap-base-image.bb | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meta-arago-distro/recipes-core/images/tisdk-bootstrap-base-image.bb diff --git a/meta-arago-distro/recipes-core/images/tisdk-bootstrap-base-image.bb b/meta-arago-distro/recipes-core/images/tisdk-bootstrap-base-image.bb new file mode 100644 index 00000000..8b7f10c9 --- /dev/null +++ b/meta-arago-distro/recipes-core/images/tisdk-bootstrap-base-image.bb @@ -0,0 +1,22 @@ +SUMMARY = "Arago TI SDK bootstrap base image for initramfs" + +DESCRIPTION = "Image meant for basic system verification of linux kernel.\ + Intended as basic test system, this image does not package the kernel\ + in the standard /boot folder in rootfs. Instead, it provides a base\ + rootfs with enough basic board bringup utilities allowing kernel to be\ + deployed elsewhere (tftp/separate boot partition/jtag log etc..) and\ + maybe used for basic platform bringup (bootstrap) activities.\ +" + +require arago-tiny-image.inc + +IMAGE_FSTYPES += "cpio cpio.xz" + +ARAGO_BOOTSTRAP_IMAGE_EXTRA_INSTALL ?= "" + +IMAGE_INSTALL += " \ + packagegroup-arago-bootstrap \ + ${ARAGO_BOOTSTRAP_IMAGE_EXTRA_INSTALL} \ +" + +export IMAGE_BASENAME = "tisdk-bootstrap-base-image" From patchwork Tue Sep 13 04:02:14 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12700 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 AED24C6FD1B for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web09.930.1663041769098134594 for ; Mon, 12 Sep 2022 21:02:49 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 A0A2E40D80 for ; Tue, 13 Sep 2022 04:02:47 +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 lKIzykKthWxf for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 9753940D78 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id F03C01749CF for ; Tue, 13 Sep 2022 00:02:45 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 20/52] recipes-bsp: Create a bootstrap-initrd package Date: Tue, 13 Sep 2022 04:02:14 +0000 Message-Id: <20220913040246.2365077-21-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13997 From: Nishanth Menon Lets create an bootstrap-initrd package that installs the cpio generated in the correct locations. Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../bootstrap-initrd/bootstrap-initrd_1.0.bb | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meta-arago-distro/recipes-bsp/bootstrap-initrd/bootstrap-initrd_1.0.bb diff --git a/meta-arago-distro/recipes-bsp/bootstrap-initrd/bootstrap-initrd_1.0.bb b/meta-arago-distro/recipes-bsp/bootstrap-initrd/bootstrap-initrd_1.0.bb new file mode 100644 index 00000000..92822dc3 --- /dev/null +++ b/meta-arago-distro/recipes-bsp/bootstrap-initrd/bootstrap-initrd_1.0.bb @@ -0,0 +1,22 @@ +SUMMARY = "Prebuilt initramfs with apps for bootstraping new board" + +LICENSE = "MIT" + +CLEANBROKEN = "1" + +PACKAGE_ARCH = "${MACHINE_ARCH}" + +S = "${WORKDIR}" + +BOOSTRAP_IMAGE = "tisdk-bootstrap-base-image" + +TARGET = "bootstrap-rootfs-${MACHINE}.cpio" + +do_install() { + install -d ${D}/boot + install -m 0644 ${DEPLOY_DIR_IMAGE}/${BOOSTRAP_IMAGE}-${MACHINE}.cpio ${D}/boot/${TARGET} +} + +FILES:${PN} = "/boot" + +do_install[depends] = "${BOOSTRAP_IMAGE}:do_image_complete" From patchwork Tue Sep 13 04:02:15 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12692 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 7AD84C6FA93 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.896.1663041770108993381 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 7E4DD40D8F for ; Tue, 13 Sep 2022 04:02:48 +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 o2uxHLNB0s2d for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 71D6C40D8C for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 06BB11749D0 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 21/52] recipes-core: images: Introduce tisdk-bootstrap-image Date: Tue, 13 Sep 2022 04:02:15 +0000 Message-Id: <20220913040246.2365077-22-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14010 From: Nishanth Menon Lets introduce tisdk-bootstrap-image which now consists of a completely bootable system with minimal initramfs that can be used to boot up a system. We also will create a rootfs that matches with the initramfs to allow users who use mmc and other boot media to have access to the same debug tools for a new platform bringup Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../images/tisdk-bootstrap-image.bb | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meta-arago-distro/recipes-core/images/tisdk-bootstrap-image.bb diff --git a/meta-arago-distro/recipes-core/images/tisdk-bootstrap-image.bb b/meta-arago-distro/recipes-core/images/tisdk-bootstrap-image.bb new file mode 100644 index 00000000..b41f09fb --- /dev/null +++ b/meta-arago-distro/recipes-core/images/tisdk-bootstrap-image.bb @@ -0,0 +1,22 @@ +SUMMARY = "Arago TI SDK bootstrap image usable for board bringup" + +DESCRIPTION = "This image is a complete package containing a rootfs\ + and an initrd with platform test utilities that can be used for new\ + platform bringup activities. Typically one would use the bootstrap\ + initrd till the storage media access is debugged, following which one\ + would switch over to using the storage media of choice with the same\ + content.\ +" + +require arago-tiny-image.inc + +ARAGO_BOOTSTRAP_IMAGE_EXTRA_INSTALL ?= "" + +IMAGE_INSTALL += " \ + packagegroup-arago-bootstrap \ + kernel-base \ + bootstrap-initrd \ + ${ARAGO_BOOTSTRAP_IMAGE_EXTRA_INSTALL} \ +" + +export IMAGE_BASENAME = "tisdk-bootstrap-image" From patchwork Tue Sep 13 04:02:16 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12704 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 B0D6DC6FD1D for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.890.1663041769112745265 for ; Mon, 12 Sep 2022 21:02:49 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 A487040D78 for ; Tue, 13 Sep 2022 04:02:47 +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 3YLPqWmywLYL for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 99DAB40D7B for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 088C81749DD for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 22/52] images: Build tisdk-bootstrap-image with tisdk-core-bundle Date: Tue, 13 Sep 2022 04:02:16 +0000 Message-Id: <20220913040246.2365077-23-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13998 From: Nishanth Menon Add tisdk-bootstrap-image to the list of TARGET_IMAGES for tisdk-core-bundle. Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc index f4cceb15..3c31ba18 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc +++ b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc @@ -27,7 +27,7 @@ DTB_FILTER:am65xx = "am65" DTB_FILTER:j7 = "j721e" # List of target side images to build for the SDK -TARGET_IMAGES = "tisdk-base-image tisdk-default-image tisdk-thinlinux-image" +TARGET_IMAGES = "tisdk-base-image tisdk-default-image tisdk-thinlinux-image tisdk-bootstrap-image" TISDK_TOOLCHAIN = "${@bb.utils.contains('MACHINE_FEATURES','gpu','meta-toolchain-arago-tisdk','meta-toolchain-arago-tisdk-server',d)}" TOOLCHAIN_SUFFIX = "${@bb.utils.contains('MACHINE_FEATURES','gpu','-tisdk','-tisdk-server',d)}" From patchwork Tue Sep 13 04:02:17 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12728 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 0AEC6C6FD3A for ; Tue, 13 Sep 2022 04:02:57 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.902.1663041776326997023 for ; Mon, 12 Sep 2022 21:02:56 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 C16ED40D44 for ; Tue, 13 Sep 2022 04:02:55 +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 JKlsmeFnYYox for ; Tue, 13 Sep 2022 04:02:55 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 7833840D77 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 13A941749D2 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 23/52] arm-benchmarks: Bump SRCREV to fix for CPU frequency calculations Date: Tue, 13 Sep 2022 04:02:17 +0000 Message-Id: <20220913040246.2365077-24-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:57 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14034 From: Ryan Eatmon New commit changes logic for determining the CPU frequency for the TI processors to what the k3conf tool says it is. Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb index e0f826e9..356b8d91 100644 --- a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb +++ b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb @@ -7,7 +7,7 @@ SECTION = "system" PR = "r13" BRANCH ?= "master" -SRCREV = "a3126fd88edd911fff33ace5b813652397bf4cfe" +SRCREV = "fefaf9bdd6f36ab0cebaab8dbf34e5beb50f471c" SRC_URI = "git://git.ti.com/apps/arm_benchmarks.git;protocol=git;branch=${BRANCH}" From patchwork Tue Sep 13 04:02:18 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12682 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 5E61BC6FA8A for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.898.1663041772223068818 for ; Mon, 12 Sep 2022 21:02:52 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 ABDE540D6E for ; Tue, 13 Sep 2022 04:02:51 +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 kvBZTL-pNSVn for ; Tue, 13 Sep 2022 04:02:51 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 9BBDA40D7C for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 1F8E31749D3 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 24/52] weston-init: fix killproc for thinlinux so that it doesn't kill itself Date: Tue, 13 Sep 2022 04:02:18 +0000 Message-Id: <20220913040246.2365077-25-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14030 From: Darren Etheridge busybox pidof doesn't omit the current pid as this script is called weston on the target in thinlinux with a busybox based utility load later killproc operations end up killing this script, which leads to the script not actually starting weston. Signed-off-by: Darren Etheridge Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-graphics/wayland/weston-init/init | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/meta-arago-distro/recipes-graphics/wayland/weston-init/init b/meta-arago-distro/recipes-graphics/wayland/weston-init/init index 7a80238b..fa3f0372 100644 --- a/meta-arago-distro/recipes-graphics/wayland/weston-init/init +++ b/meta-arago-distro/recipes-graphics/wayland/weston-init/init @@ -9,8 +9,21 @@ ### END INIT INFO killproc() { - pid=`/bin/pidof $1` - [ "$pid" != "" ] && kill $pid + all_pids=`/bin/pidof $1` + + # busybox pidof doesn't ommit the current pid + # as this script is called weston on the target + # in thinlinux with a busybox based utility load + # later killproc operations end up killing this + # script. + for pid in $all_pids + do + if [ "$pid" != "$$" ]; then + kill_pids+=$pid + fi + done + + [ "$kill_pids" != "" ] && kill $kill_pids } read CMDLINE < /proc/cmdline From patchwork Tue Sep 13 04:02:19 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12690 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 78FA4C6FA94 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web09.933.1663041770122332712 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 91D7240D4B for ; Tue, 13 Sep 2022 04:02:48 +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 qOmvxrGX6-HB for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 8337D40D74 for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 21AA11749D4 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 25/52] psplash: Update patches to match newer psplash version Date: Tue, 13 Sep 2022 04:02:19 +0000 Message-Id: <20220913040246.2365077-26-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14012 From: Ryan Eatmon The headers files in psplash were updated for the SPDX and changed the line numbering in the files. This caused the patches to fail. Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../0001-psplash-Add-Arago-custom-color.patch | 19 +++++----- .../psplash/psplash/psplash-18bpp.patch | 37 +++++++++++-------- 2 files changed, 32 insertions(+), 24 deletions(-) diff --git a/meta-arago-distro/recipes-core/psplash/psplash/0001-psplash-Add-Arago-custom-color.patch b/meta-arago-distro/recipes-core/psplash/psplash/0001-psplash-Add-Arago-custom-color.patch index c13790e1..80ba58e5 100644 --- a/meta-arago-distro/recipes-core/psplash/psplash/0001-psplash-Add-Arago-custom-color.patch +++ b/meta-arago-distro/recipes-core/psplash/psplash/0001-psplash-Add-Arago-custom-color.patch @@ -1,20 +1,21 @@ -From be4eb4c5c3992deee2cfaa5da8913473623f728b Mon Sep 17 00:00:00 2001 -From: Franklin S. Cooper Jr -Date: Fri, 21 Sep 2012 15:18:24 -0500 -Subject: [PATCH] psplash: Add Arago custom color +From 02f63cdcff468e0b7e6dfe29cfb1e484497c38d6 Mon Sep 17 00:00:00 2001 +From: Ryan Eatmon +Date: Wed, 4 May 2022 13:55:44 -0500 +Subject: [PATCH 1/2] psplash: Add Arago custom color * Port custom colors used in psplash-ti from oe-classic. Signed-off-by: Franklin S. Cooper Jr +Signed-off-by: Ryan Eatmon --- - psplash-colors.h | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) + psplash-colors.h | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/psplash-colors.h b/psplash-colors.h -index d701089..a6a5992 100644 +index 82a9893..427fff7 100644 --- a/psplash-colors.h +++ b/psplash-colors.h -@@ -20,15 +20,15 @@ +@@ -12,15 +12,15 @@ #define _HAVE_PSPLASH_COLORS_H /* This is the overall background color */ @@ -35,5 +36,5 @@ index d701089..a6a5992 100644 #endif -- -1.7.0.4 +2.17.1 diff --git a/meta-arago-distro/recipes-core/psplash/psplash/psplash-18bpp.patch b/meta-arago-distro/recipes-core/psplash/psplash/psplash-18bpp.patch index 36ab43bf..1001a196 100644 --- a/meta-arago-distro/recipes-core/psplash/psplash/psplash-18bpp.patch +++ b/meta-arago-distro/recipes-core/psplash/psplash/psplash-18bpp.patch @@ -1,15 +1,22 @@ -upstream: http://bugzilla.o-hand.com/show_bug.cgi?id=1764 +From c3f76ec5c4bc5867e30cbfaf6cc43cf847ae76f2 Mon Sep 17 00:00:00 2001 +From: Ryan Eatmon +Date: Wed, 4 May 2022 13:56:39 -0500 +Subject: [PATCH 2/2] upstream: http://bugzilla.o-hand.com/show_bug.cgi?id=1764 +This is a reworked patch to address a code update in psplash. +Original source is unknown. + +Signed-off-by: Ryan Eatmon --- - psplash-fb.c | 8 +++++++- - psplash-fb.h | 1 + - 2 files changed, 8 insertions(+), 1 deletions(-) + psplash-fb.c | 8 +++++++- + psplash-fb.h | 1 + + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/psplash-fb.c b/psplash-fb.c -index 71740cd..860c0c0 100644 +index 2babb5f..0aff9bd 100644 --- a/psplash-fb.c +++ b/psplash-fb.c -@@ -160,6 +160,7 @@ psplash_fb_new (int angle) +@@ -223,6 +223,7 @@ psplash_fb_new (int angle, int fbdev_id) fb->real_width = fb->width = fb_var.xres; fb->real_height = fb->height = fb_var.yres; fb->bpp = fb_var.bits_per_pixel; @@ -17,7 +24,7 @@ index 71740cd..860c0c0 100644 fb->stride = fb_fix.line_length; fb->type = fb_fix.type; fb->visual = fb_fix.visual; -@@ -308,7 +309,7 @@ psplash_fb_plot_pixel (PSplashFB *fb, +@@ -399,7 +400,7 @@ psplash_fb_plot_pixel (PSplashFB *fb, break; } } else if (fb->rgbmode == BGR565 || fb->rgbmode == BGR888) { @@ -25,10 +32,10 @@ index 71740cd..860c0c0 100644 + switch (fb->depth) { case 24: - case 32: -@@ -316,6 +317,11 @@ psplash_fb_plot_pixel (PSplashFB *fb, - *(fb->data + off + 1) = green; - *(fb->data + off + 2) = blue; + #if __BYTE_ORDER == __BIG_ENDIAN +@@ -416,6 +417,11 @@ psplash_fb_plot_pixel (PSplashFB *fb, + *(volatile uint32_t *) (fb->bdata + off) + = (blue << 16) | (green << 8) | (red); break; + case 18: + *(fb->data + off) = (red >> 2) | ((green & 0x0C) << 4); @@ -36,13 +43,13 @@ index 71740cd..860c0c0 100644 + *(fb->data + off + 2) = (blue & 0xC0) >> 6; + break; case 16: - *(volatile uint16_t *) (fb->data + off) + *(volatile uint16_t *) (fb->bdata + off) = ((blue >> 3) << 11) | ((green >> 2) << 5) | (red >> 3); diff --git a/psplash-fb.h b/psplash-fb.h -index ef5b39e..160cdeb 100644 +index 16e2b20..cf17f51 100644 --- a/psplash-fb.h +++ b/psplash-fb.h -@@ -34,6 +34,7 @@ typedef struct PSplashFB +@@ -27,6 +27,7 @@ typedef struct PSplashFB int visual; int width, height; int bpp; @@ -51,5 +58,5 @@ index ef5b39e..160cdeb 100644 char *data; char *base; -- -1.6.3.3 +2.17.1 From patchwork Tue Sep 13 04:02:20 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12702 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 A6C3DC6FD1A for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.894.1663041770148571784 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 94D4540D74 for ; Tue, 13 Sep 2022 04:02:48 +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 OVDsndoIMZjU for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 8B35B40D8A for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 2D58D1749D5 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 26/52] qtbase-conf: Unset fixed HDMI mode Date: Tue, 13 Sep 2022 04:02:20 +0000 Message-Id: <20220913040246.2365077-27-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14011 From: Sai Sree Kartheek Adivi HDMI mode is set to 1024x768 in eglfs_kms_cfg.json. This needs to be unset since not all devices use the same resolution display. When mode is not defined, the system's preferred mode is chosen. Ref: https://doc.qt.io/qt-5/embedded-linux.html#display-output Signed-off-by: Sai Sree Kartheek Adivi Reviewed-by: Devarsh Thakkar Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-qt/qt5/qtbase-conf/eglfs_kms_cfg.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/meta-arago-distro/recipes-qt/qt5/qtbase-conf/eglfs_kms_cfg.json b/meta-arago-distro/recipes-qt/qt5/qtbase-conf/eglfs_kms_cfg.json index 61b834be..ac19b8ec 100644 --- a/meta-arago-distro/recipes-qt/qt5/qtbase-conf/eglfs_kms_cfg.json +++ b/meta-arago-distro/recipes-qt/qt5/qtbase-conf/eglfs_kms_cfg.json @@ -8,8 +8,7 @@ "mode": "off" }, { - "name": "HDMI1", - "mode": "1024x768" + "name": "HDMI1" } ] -} \ No newline at end of file +} From patchwork Tue Sep 13 04:02:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12714 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 EA1B4C6FD2C for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.891.1663041769816632639 for ; Mon, 12 Sep 2022 21:02:49 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 C23CE40D81 for ; Tue, 13 Sep 2022 04:02:47 +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 Dvjg-2uY3_fH for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id B91B240D7B for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 388F11749D6 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 27/52] meta-arago-distro: curl: add proxy and verbose support Date: Tue, 13 Sep 2022 04:02:21 +0000 Message-Id: <20220913040246.2365077-28-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13999 From: Anand Gadiyar Our PACKAGECONFIG override for curl was done to prefer OpenSSL for curl but seems to have the side effect of overriding other build flags enabled in the upstream recipe, specifically the ones that enable verbose debug prints and proxy support. This affects git clone while behind a proxy. Explicitly enable these in arago.conf. Signed-off-by: Anand Gadiyar Reviewed-by: Ryan Eatmon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/conf/distro/arago.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf index e24cace9..8cf7b84a 100644 --- a/meta-arago-distro/conf/distro/arago.conf +++ b/meta-arago-distro/conf/distro/arago.conf @@ -127,7 +127,7 @@ PACKAGECONFIG:append:pn-qtwayland = " examples" PACKAGECONFIG:append:pn-qtwebengine = " examples" # Prefer OpenSSL over GnuTLS for curl due to TSU exemptions -PACKAGECONFIG:pn-curl = "${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)} openssl zlib" +PACKAGECONFIG:pn-curl = "${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)} proxy openssl verbose zlib" PACKAGECONFIG:pn-glmark2 = "drm-gles2 wayland-gles2" From patchwork Tue Sep 13 04:02:22 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12696 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 A32CDC6FA9D for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web09.931.1663041769831188495 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 D502F40D82 for ; Tue, 13 Sep 2022 04:02:47 +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 7vh28wPYvAsR for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id CBA7940D7B for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 433491749D7 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 28/52] matrix-gui: Disable auto-startup for am62xx-evm Date: Tue, 13 Sep 2022 04:02:22 +0000 Message-Id: <20220913040246.2365077-29-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14000 From: Ryan Eatmon There are some issues related to auto-starting the matrix-gui on am62xx-evm. It can still be run manually if desired. Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb index c09e8d35..40ad55d3 100644 --- a/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb @@ -5,10 +5,12 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=a886c9ef769b2d8271115d2502512e5d" SECTION = "multimedia" -PR = "r37" +PR = "r38" SYSTEMD_SERVICE:${PN} = "matrix-gui-2.0.service" +SYSTEMD_AUTO_ENABLE:am62xx = "disable" + PACKAGE_ARCH = "${MACHINE_ARCH}" inherit systemd From patchwork Tue Sep 13 04:02:23 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12698 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 9D60AC6FA9E for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.895.1663041770189103938 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 B8E0740D90 for ; Tue, 13 Sep 2022 04:02:48 +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 K3jTCrQ3DhY3 for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id AE6B040D8A for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 4E2121749D8 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 29/52] ti-tisdk-setup: Bump to 08.03.00.005 release Date: Tue, 13 Sep 2022 04:02:23 +0000 Message-Id: <20220913040246.2365077-30-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14013 From: Ryan Eatmon Updated the ti-tisdk-setup version for 08.03.00.005 Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb index 6b3b85d5..b4eb8244 100644 --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb @@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://setup.sh;beginline=3;endline=31;md5=fc4b04a33df6d892c PR = "r47" BRANCH ?= "master" -SRCREV = "22f4e5af1894a60d9e7d04caf83f26a556c14eca" -SRC_URI = "git://arago-project.org/git/projects/tisdk-setup-scripts.git;protocol=git;branch=${BRANCH}" +SRCREV = "eae21af9be4e7a0028045cc3e4038fe2157a266d" +SRC_URI = "git://git.ti.com/arago-project/tisdk-setup-scripts.git;branch=${BRANCH}" S = "${WORKDIR}/git" From patchwork Tue Sep 13 04:02:24 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12712 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 D7C6DC6FD27 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.896.1663041770196501603 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 BFB5A40D8A for ; Tue, 13 Sep 2022 04:02:48 +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 v9pA-DgDlmO2 for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id B571640D8C for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 58DB81749D9 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 30/52] cifs-utils: add patch for upstream build bug Date: Tue, 13 Sep 2022 04:02:24 +0000 Message-Id: <20220913040246.2365077-31-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14014 From: Daniel Parks cifs-utils upstream has a bug that causes our build to fail when PARALLEL_MAKE is set to "-j1". This adds an overlay with the patch for the bug, which I have also submitted upstream. Signed-off-by: Daniel Parks Reviewed-by: Denys Dmytriyenko Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- ...automake-treat-sbin-as-exec-not-data.patch | 35 +++++++++++++++++++ .../cifs/cifs-utils_6.14.bbappend | 4 +++ 2 files changed, 39 insertions(+) create mode 100644 meta-arago-distro/recipes-support/cifs/cifs-utils/0001-cifs-utils-Make-automake-treat-sbin-as-exec-not-data.patch create mode 100644 meta-arago-distro/recipes-support/cifs/cifs-utils_6.14.bbappend diff --git a/meta-arago-distro/recipes-support/cifs/cifs-utils/0001-cifs-utils-Make-automake-treat-sbin-as-exec-not-data.patch b/meta-arago-distro/recipes-support/cifs/cifs-utils/0001-cifs-utils-Make-automake-treat-sbin-as-exec-not-data.patch new file mode 100644 index 00000000..dd9c7958 --- /dev/null +++ b/meta-arago-distro/recipes-support/cifs/cifs-utils/0001-cifs-utils-Make-automake-treat-sbin-as-exec-not-data.patch @@ -0,0 +1,35 @@ +From fd5f395514256572c451127006a68483106cf2b8 Mon Sep 17 00:00:00 2001 +From: Daniel Parks +Date: Fri, 3 Jun 2022 15:34:59 -0500 +Subject: [PATCH] cifs-utils: Make automake treat /sbin as exec, not data + +Otherwise, $(DESTDIR)/sbin doesn't get created until install-data on a +-j1 build and install-exec-hook can fail because it might not exist. + +Steps to reproduce this bug: +$ autoreconf -i +$ ./configure +$ mkdir image +$ make DESTDIR=image install -j1 + +Upstream-Status: Pending +Signed-off-by: Daniel Parks +--- + Makefile.am | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index e9be6b3..edb1b7f 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,8 +1,8 @@ + AM_CFLAGS = -Wall -Wextra -D_FORTIFY_SOURCE=2 $(PIE_CFLAGS) $(RELRO_CFLAGS) + ACLOCAL_AMFLAGS = -I aclocal + +-root_sbindir = $(ROOTSBINDIR) +-root_sbin_PROGRAMS = mount.cifs ++root_exec_sbindir = $(ROOTSBINDIR) ++root_exec_sbin_PROGRAMS = mount.cifs + mount_cifs_SOURCES = mount.cifs.c mtab.c resolve_host.c util.c + mount_cifs_LDADD = $(LIBCAP) $(CAPNG_LDADD) $(RT_LDADD) + include_HEADERS = cifsidmap.h diff --git a/meta-arago-distro/recipes-support/cifs/cifs-utils_6.14.bbappend b/meta-arago-distro/recipes-support/cifs/cifs-utils_6.14.bbappend new file mode 100644 index 00000000..c145cf63 --- /dev/null +++ b/meta-arago-distro/recipes-support/cifs/cifs-utils_6.14.bbappend @@ -0,0 +1,4 @@ +FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" + +SRC_URI += "file://0001-cifs-utils-Make-automake-treat-sbin-as-exec-not-data.patch" + From patchwork Tue Sep 13 04:02:25 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12717 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 D935EC6FD19 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.856.1663041770260654065 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 C038E40D92 for ; Tue, 13 Sep 2022 04:02:48 +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 9fLDiiaYMVhY for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id B7D7140D8D for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 637421749CF for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 31/52] tisdk-uenv: remove uEnv.txt for k3 Date: Tue, 13 Sep 2022 04:02:25 +0000 Message-Id: <20220913040246.2365077-32-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14015 From: Andrew Davis This fixup should have been done in u-boot and not in a uEnv.txt file. It is not correct for all K3 anymore either. Remove it. Signed-off-by: Andrew Davis Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../tisdk-uenv/tisdk-uenv/k3/uEnv.txt | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 meta-arago-distro/recipes-tisdk/tisdk-uenv/tisdk-uenv/k3/uEnv.txt diff --git a/meta-arago-distro/recipes-tisdk/tisdk-uenv/tisdk-uenv/k3/uEnv.txt b/meta-arago-distro/recipes-tisdk/tisdk-uenv/tisdk-uenv/k3/uEnv.txt deleted file mode 100644 index 80ea34f5..00000000 --- a/meta-arago-distro/recipes-tisdk/tisdk-uenv/tisdk-uenv/k3/uEnv.txt +++ /dev/null @@ -1,19 +0,0 @@ -# This uEnv.txt file can contain additional environment settings that you -# want to set in U-Boot at boot time. This can be simple variables such -# as the serverip or custom variables. The format of this file is: -# variable=value -# NOTE: This file will be evaluated after the bootcmd is run and the -# bootcmd must be set to load this file if it exists (this is the -# default on all newer U-Boot images. This also means that some -# variables such as bootdelay cannot be changed by this file since -# it is not evaluated until the bootcmd is run. - -# The specific board is not able to be automatically detected. The below is a -# workaround to set a sane default incase the user has not manually configured -# a specific board. -def_board_name="am65x" - -# Check if using default board_name when name_overlays is not set -check_for_board=if test $name_overlays; then echo "Using board_name = $board_name"; else setenv board_name $def_board_name; fi - -uenvcmd=run check_for_board; run findfdt From patchwork Tue Sep 13 04:02:26 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12699 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 9D598C6FA9B for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.892.1663041769860618211 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 F06D840D83 for ; Tue, 13 Sep 2022 04:02:47 +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 pgXdVMYlhVSb for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id E740840D7B for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 650941749D3 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 32/52] conf: arago: Add j721s2 hs platform support Date: Tue, 13 Sep 2022 04:02:26 +0000 Message-Id: <20220913040246.2365077-33-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14002 From: Jayesh Choudhary Add kernel type for j721s2 hs platform Signed-off-by: Jayesh Choudhary Acked-by: Andrew Davis Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/conf/distro/arago.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf index 8cf7b84a..09678b89 100644 --- a/meta-arago-distro/conf/distro/arago.conf +++ b/meta-arago-distro/conf/distro/arago.conf @@ -56,6 +56,7 @@ KERNEL_IMAGETYPES:am64xx-hs-evm = "Image fitImage" KERNEL_IMAGETYPES:am65xx-hs-evm = "Image fitImage" KERNEL_IMAGETYPES:j721e-hs-evm = "Image fitImage" KERNEL_IMAGETYPES:j7200-hs-evm = "Image fitImage" +KERNEL_IMAGETYPES:j721s2-hs-evm = "Image fitImage" # FIT image settings FITIMAGE_HASH_ALGO = "" From patchwork Tue Sep 13 04:02:27 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12687 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 787D3C6FA92 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.897.1663041770264287170 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 DCAA840D8D for ; Tue, 13 Sep 2022 04:02:48 +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 Ecc_dOghV8sj for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id D2BC240D8C for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 701BA1749DA for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 33/52] tisdk-bundle: fix prebuilt-images U-Boot binary name for HS Date: Tue, 13 Sep 2022 04:02:27 +0000 Message-Id: <20220913040246.2365077-34-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14016 From: Andrew Davis HS builds do not generate a -${MACHINE} version of the u-boot.img binary. Not sure why we deploy these named this way to begin with, maybe a left- over from when we had multiple machines per SDK.. To fix the HS builds lets ship the binary named as-is for all platforms. Signed-off-by: Andrew Davis Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/classes/tisdk-bundle.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arago-distro/classes/tisdk-bundle.bbclass b/meta-arago-distro/classes/tisdk-bundle.bbclass index 5ab9f875..a3c5ee11 100644 --- a/meta-arago-distro/classes/tisdk-bundle.bbclass +++ b/meta-arago-distro/classes/tisdk-bundle.bbclass @@ -771,9 +771,9 @@ tisdk_image_build () { fi # Copy the U-Boot image if it exists - if [ -e ${DEPLOY_DIR_IMAGE}/u-boot-${MACHINE}.img ] + if [ -e ${DEPLOY_DIR_IMAGE}/u-boot.img ] then - cp ${DEPLOY_DIR_IMAGE}/u-boot-${MACHINE}.img ${prebuilt_dir}/ + cp ${DEPLOY_DIR_IMAGE}/u-boot.img ${prebuilt_dir}/ elif [ -e ${DEPLOY_DIR_IMAGE}/u-boot-${MACHINE}.bin ] then cp ${DEPLOY_DIR_IMAGE}/u-boot-${MACHINE}.bin ${prebuilt_dir}/ From patchwork Tue Sep 13 04:02:28 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12720 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 EB220C6FD32 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.893.1663041769869075105 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 13E5640D84 for ; Tue, 13 Sep 2022 04:02:48 +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 BKhmj9SupBgB for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 0791940D7B for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 7B0A51749DD for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 34/52] conf: arago: Adding tracer-hooks build flag to gstreamer1.0 Date: Tue, 13 Sep 2022 04:02:28 +0000 Message-Id: <20220913040246.2365077-35-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14001 From: Aniket Limaye Enables GST_TRACERS : an optional utility for profiling gstreamer applications Signed-off-by: Aniket Limaye Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/conf/distro/arago.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf index 09678b89..542e20cb 100644 --- a/meta-arago-distro/conf/distro/arago.conf +++ b/meta-arago-distro/conf/distro/arago.conf @@ -147,6 +147,9 @@ PACKAGECONFIG:append:pn-libsdl2 = " kmsdrm" # Enable cryptodev/devcrypto engine in OpenSSL 1.1 PACKAGECONFIG:append:pn-openssl = " cryptodev-linux" +# Enable GST_TRACER logging in gstreamer +PACKAGECONFIG:append:pn-gstreamer1.0 = " tracer-hooks" + # Disable pulseaudio routing in alsa by default PACKAGECONFIG:remove:pn-alsa-plugins = "pulseaudio" RDEPENDS:pulseaudio-server:remove = "alsa-plugins-pulseaudio-conf" From patchwork Tue Sep 13 04:02:29 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12685 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 6DC56C6FA91 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.897.1663041770314682530 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 F004A40D8E for ; Tue, 13 Sep 2022 04:02:48 +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 lZWIGPVekGrD for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id E56D440D8C for ; Tue, 13 Sep 2022 04:02:47 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 867B51749D6 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 35/52] tisdk-default-image: Add docker support Date: Tue, 13 Sep 2022 04:02:29 +0000 Message-Id: <20220913040246.2365077-36-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14017 From: Sai Sree Kartheek Adivi Add docker support to tisdk-default-image Signed-off-by: Sai Sree Kartheek Adivi Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-core/images/tisdk-default-image.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-arago-distro/recipes-core/images/tisdk-default-image.bb b/meta-arago-distro/recipes-core/images/tisdk-default-image.bb index b82fce59..8cd10429 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-default-image.bb +++ b/meta-arago-distro/recipes-core/images/tisdk-default-image.bb @@ -72,4 +72,5 @@ IMAGE_INSTALL += "\ ${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python2", "${PYTHON2APPS}", "", d)} \ ${DEVTOOLS} \ ${@bb.utils.contains('TUNE_FEATURES', 'armv7a', 'valgrind', '', d)} \ + docker \ " From patchwork Tue Sep 13 04:02:30 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12724 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 E0DBAC6FD2A for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.854.1663041769918496257 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 2F98D40D86 for ; Tue, 13 Sep 2022 04:02:48 +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 j4CNR9qM5bao for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 2626D40D7B for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 916E01749D7 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 36/52] packagegroups: Mirror ti-test change from meta-ti Date: Tue, 13 Sep 2022 04:02:30 +0000 Message-Id: <20220913040246.2365077-37-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14003 From: Ryan Eatmon A change in meta-ti locks the viddec-test and videnc-test to j7-evm and j7-hs-evm, so we need to mirror that requirement in the packagegroup. Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-core/packagegroups/ti-test.bb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/meta-arago-distro/recipes-core/packagegroups/ti-test.bb b/meta-arago-distro/recipes-core/packagegroups/ti-test.bb index 07dbdf38..ee8bf04e 100644 --- a/meta-arago-distro/recipes-core/packagegroups/ti-test.bb +++ b/meta-arago-distro/recipes-core/packagegroups/ti-test.bb @@ -81,10 +81,13 @@ ARAGO_TI_TEST:append:k3 = " \ k3conf \ " -# Disable due to breakage -# viddec-test-app ARAGO_TI_TEST:append:j7 = " \ ufs-utils \ +" + +# Disable due to breakage +# viddec-test-app +ARAGO_TI_TEST:append:j721e = " \ videnc-test-app \ " From patchwork Tue Sep 13 04:02:31 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12695 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 8EC3EC6FA98 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.894.1663041769927806925 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 38F2040D7B for ; Tue, 13 Sep 2022 04:02:48 +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 lV3y7zQod67D for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 289CD40D85 for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 9C32A1749DE for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 37/52] all: Remove reference to arago-project.org Date: Tue, 13 Sep 2022 04:02:31 +0000 Message-Id: <20220913040246.2365077-38-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14006 From: Ryan Eatmon arago-project.org is being shut down in August. This commit changes the last recipes that point to that old site to point to git.ti.com, or just rmeove the reference entirely. Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/README | 2 +- meta-arago-distro/classes/tisdk-bundle.bbclass | 2 +- meta-arago-distro/conf/distro/arago.conf | 2 -- meta-arago-distro/recipes-core/base-files/base-files/issue | 2 +- .../recipes-core/base-files/base-files/issue.net | 2 +- .../recipes-core/feed-config/arago-feed-config_1.0.bb | 2 +- .../recipes-tisdk/oe-layersetup/oe-layersetup.bb | 2 +- .../recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb | 4 ++-- .../recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb | 2 +- 9 files changed, 9 insertions(+), 11 deletions(-) diff --git a/meta-arago-distro/README b/meta-arago-distro/README index 2a3ae586..49e9d9e1 100644 --- a/meta-arago-distro/README +++ b/meta-arago-distro/README @@ -27,7 +27,7 @@ URI: https://github.com/meta-qt5/meta-qt5 branch: master revision: HEAD -URI: git://arago-project.org/git/meta-arago +URI: git://git.yoctoproject.org/meta-arago branch: master revision: HEAD layers: meta-arago-extras diff --git a/meta-arago-distro/classes/tisdk-bundle.bbclass b/meta-arago-distro/classes/tisdk-bundle.bbclass index a3c5ee11..6a0b4eca 100644 --- a/meta-arago-distro/classes/tisdk-bundle.bbclass +++ b/meta-arago-distro/classes/tisdk-bundle.bbclass @@ -635,7 +635,7 @@ EOF if [ "$extra_files" == "1" ] then - source="$source""
Files from:
git://arago-project.org/git/meta-arago.git
git://arago-project.org/git/meta-ti.git" + source="$source""
Files from:
https://git.yoctoproject.org/meta-arago
https://git.yoctoproject.org/meta-ti" fi case "$package" in diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf index 542e20cb..61e0eabc 100644 --- a/meta-arago-distro/conf/distro/arago.conf +++ b/meta-arago-distro/conf/distro/arago.conf @@ -10,8 +10,6 @@ OPKG_ARGS:remove = "--prefer-arch-to-version" TI_MIRROR = "http://software-dl.ti.com/processor-sdk-mirror/sources/" MIRRORS += " \ -ftp://.*/.* http://arago-project.org/files/sources/ \n \ -https?$://.*/.* http://arago-project.org/files/sources/ \n \ bzr://.*/.* ${TI_MIRROR} \n \ cvs://.*/.* ${TI_MIRROR} \n \ git://.*/.* ${TI_MIRROR} \n \ diff --git a/meta-arago-distro/recipes-core/base-files/base-files/issue b/meta-arago-distro/recipes-core/base-files/base-files/issue index 4f22fd99..53d4b7d4 100644 --- a/meta-arago-distro/recipes-core/base-files/base-files/issue +++ b/meta-arago-distro/recipes-core/base-files/base-files/issue @@ -4,5 +4,5 @@ |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_| |___| |___| -Arago Project http://arago-project.org \n \l +Arago Project \n \l diff --git a/meta-arago-distro/recipes-core/base-files/base-files/issue.net b/meta-arago-distro/recipes-core/base-files/base-files/issue.net index 8ce72070..7ff60fd5 100644 --- a/meta-arago-distro/recipes-core/base-files/base-files/issue.net +++ b/meta-arago-distro/recipes-core/base-files/base-files/issue.net @@ -4,5 +4,5 @@ |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_| |___| |___| -Arago Project http://arago-project.org %h +Arago Project %h diff --git a/meta-arago-distro/recipes-core/feed-config/arago-feed-config_1.0.bb b/meta-arago-distro/recipes-core/feed-config/arago-feed-config_1.0.bb index 4239bc8f..927a83d3 100644 --- a/meta-arago-distro/recipes-core/feed-config/arago-feed-config_1.0.bb +++ b/meta-arago-distro/recipes-core/feed-config/arago-feed-config_1.0.bb @@ -7,7 +7,7 @@ INHIBIT_DEFAULT_DEPS = "1" FEEDNAMEPREFIX ?= "" FEEDURIPREFIX ?= "feeds/" -DISTRO_FEED_URI ?= "http://arago-project.org" +DISTRO_FEED_URI ?= "" do_compile() { mkdir -p ${S}/${sysconfdir}/opkg/ diff --git a/meta-arago-distro/recipes-tisdk/oe-layersetup/oe-layersetup.bb b/meta-arago-distro/recipes-tisdk/oe-layersetup/oe-layersetup.bb index cfed0179..917aa1bf 100644 --- a/meta-arago-distro/recipes-tisdk/oe-layersetup/oe-layersetup.bb +++ b/meta-arago-distro/recipes-tisdk/oe-layersetup/oe-layersetup.bb @@ -8,6 +8,6 @@ inherit allarch BRANCH ?= "master" SRCREV = "e58f941784fb45fd826779a45b33973e6342700f" -SRC_URI = "git://arago-project.org/git/projects/oe-layersetup.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/arago-project/oe-layersetup.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb index 943a1b2b..6cd8d466 100644 --- a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb +++ b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb @@ -1,5 +1,5 @@ DESCRIPTION = "TI Cryptography Example Applications" -HOMEPAGE = "http://arago-project.org/git/projects/?p=crypto-example-apps.git;a=summary" +HOMEPAGE = "https://git.ti.com/cgit/arago-project-org/crypto-example-apps/" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://AES/aes_256.c;beginline=9;endline=35;md5=8edbb4dee965d2f2eb5ca2822addcae5" SECTION = "console" @@ -10,7 +10,7 @@ PR = "r7" BRANCH ?= "master" SRCREV = "6f4b09fffe970bb6b448369875874e798ef282f6" -SRC_URI = "git://arago-project.org/git/projects/crypto-example-apps.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/arago-project-org/crypto-example-apps.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" 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 index f3fcdad3..e30c5e27 100644 --- a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb +++ b/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb @@ -4,7 +4,7 @@ FILESEXTRAPATHS:prepend := "${ARAGOBASE}/meta-arago-extras/recipes-extended/ltp/ require recipes-extended/ltp/ltp_${PV}.bb SUMMARY = "Embedded Linux Device Driver Tests based on Linux Test Project" -HOMEPAGE = "http://arago-project.org/git/projects/test-automation/ltp-ddt.git" +HOMEPAGE = "https://git.ti.com/cgit/test-automation/ltp-ddt/" PROVIDES += "ltp" From patchwork Tue Sep 13 04:02:32 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12683 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 6A743C6FA8D for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.857.1663041770323817147 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 154F840D91 for ; Tue, 13 Sep 2022 04:02:49 +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 X8wQ_d2MFY9p for ; Tue, 13 Sep 2022 04:02:49 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 0BF6F40D8C for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 9E5901749DF for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 38/52] qtwebengine: bison-native dependency is upstream now remove this bbappend Date: Tue, 13 Sep 2022 04:02:32 +0000 Message-Id: <20220913040246.2365077-39-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14018 From: Andrew Davis The dependency on bison-native was fixed in a patch by Denys and is now in Dunfell/kirkstone/Master, remove this and the now empty bbappend. Signed-off-by: Andrew Davis Acked-by: Denys Dmytriyenko Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-qt/qt5/qtwebengine_git.bbappend | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 meta-arago-distro/recipes-qt/qt5/qtwebengine_git.bbappend diff --git a/meta-arago-distro/recipes-qt/qt5/qtwebengine_git.bbappend b/meta-arago-distro/recipes-qt/qt5/qtwebengine_git.bbappend deleted file mode 100644 index 60f6678f..00000000 --- a/meta-arago-distro/recipes-qt/qt5/qtwebengine_git.bbappend +++ /dev/null @@ -1,4 +0,0 @@ -FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" -PR:append = ".arago1" - -DEPENDS += "bison-native" From patchwork Tue Sep 13 04:02:33 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12693 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 94F54C6FA9A for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.895.1663041769954349841 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 4453940D85 for ; Tue, 13 Sep 2022 04:02:48 +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 pgLISN7VlZRi for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 3B2FE40D88 for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id A9E721749E0 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 39/52] tisdk-core-bundle: Remove .bin files from being deployed Date: Tue, 13 Sep 2022 04:02:33 +0000 Message-Id: <20220913040246.2365077-40-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14004 From: Ryan Eatmon Remove the .bin files from being deployed as they are not needed. Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb index 27e5f6db..ec4e0344 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb +++ b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.bb @@ -14,8 +14,7 @@ DEPLOY_IMAGES_NAME:k3 = "bl31.bin bl32.bin" DEPLOY_IMAGES_NAME:append:am65xx = " sysfw.itb" DEPLOY_IMAGES_NAME:append:j721e-evm = " sysfw.itb" DEPLOY_IMAGES_NAME:append:j721e-hs-evm = " sysfw.itb" -DEPLOY_IMAGES_NAME:append:am65xx-evm = " ti-sci-firmware-am65x-gp.bin sysfw-am65x-evm.itb sysfw-am65x_sr2-evm.itb" -DEPLOY_IMAGES_NAME:append:j721e-evm = " ti-fs-firmware-j721e-gp.bin" +DEPLOY_IMAGES_NAME:append:am65xx-evm = " sysfw-am65x-evm.itb sysfw-am65x_sr2-evm.itb" ARAGO_TISDK_IMAGE ?= "tisdk-core-bundle" export IMAGE_BASENAME = "${ARAGO_TISDK_IMAGE}" From patchwork Tue Sep 13 04:02:34 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12710 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 D7F7CC6FD28 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.886.1663041770694036707 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 29CCC40D93 for ; Tue, 13 Sep 2022 04:02:49 +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 WjAs78KLwK7l for ; Tue, 13 Sep 2022 04:02:49 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 2056440D8C for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id B5A6D1749D3 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 40/52] pcitest: upgrade 5.4 -> 5.10 Date: Tue, 13 Sep 2022 04:02:34 +0000 Message-Id: <20220913040246.2365077-41-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14019 From: Denys Dmytriyenko pcitest resides in kernel tree - use the same tree and commit ID as for the kernel and linux-libc-headers. COPYING file had minor changes, adjust checksum accordingly. Signed-off-by: Denys Dmytriyenko Signed-off-by: Yogesh Siraswar Signed-off-by: Denys Dmytriyenko --- .../pcitest/{pcitest_5.4.bb => pcitest_5.10.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta-arago-extras/recipes-kernel/pcitest/{pcitest_5.4.bb => pcitest_5.10.bb} (73%) diff --git a/meta-arago-extras/recipes-kernel/pcitest/pcitest_5.4.bb b/meta-arago-extras/recipes-kernel/pcitest/pcitest_5.10.bb similarity index 73% rename from meta-arago-extras/recipes-kernel/pcitest/pcitest_5.4.bb rename to meta-arago-extras/recipes-kernel/pcitest/pcitest_5.10.bb index 2d7f370f..02188c97 100644 --- a/meta-arago-extras/recipes-kernel/pcitest/pcitest_5.4.bb +++ b/meta-arago-extras/recipes-kernel/pcitest/pcitest_5.10.bb @@ -1,9 +1,9 @@ SUMMARY = "Linux Kernel PCI test" LICENSE = "GPL-2.0-only" -LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" +LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" -BRANCH = "ti-linux-5.4.y" -SRCREV = "738552d0b0292e148b35d60ec47ca3c8dd6007b4" +BRANCH = "ti-linux-5.10.y" +SRCREV = "73aa709ca10103b61fba3a07471dbb4dcb56db45" SRC_URI = "git://git.ti.com/ti-linux-kernel/ti-linux-kernel.git;protocol=git;branch=${BRANCH}" S = "${WORKDIR}/git" From patchwork Tue Sep 13 04:02:35 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12725 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 CEF3DC6FD24 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.859.1663041770869700065 for ; Mon, 12 Sep 2022 21:02:51 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 5FD7540D97 for ; Tue, 13 Sep 2022 04:02:49 +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 5qpPViDGmTAA for ; Tue, 13 Sep 2022 04:02:49 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 3FCFA40D8C for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id B833D1749E1 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 41/52] all: Stop using git://git.ti.com Date: Tue, 13 Sep 2022 04:02:35 +0000 Message-Id: <20220913040246.2365077-42-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14024 From: Ryan Eatmon Stop using un-encrypted git:// protocol to access TI repositories. This is inline with the same arguments as made by github in https://github.blog/2021-09-01-improving-git-protocol-security-github/ Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../conf/distro/include/branding-bleeding.inc | 4 ++-- .../recipes-connectivity/linuxptp/linuxptp_3.0.bbappend | 2 +- .../recipes-core/meta/external-arm-toolchain.bbappend | 4 ++-- .../linux-libc-headers/linux-libc-headers_5.10.bb | 4 ++-- .../recipes-tisdk/oe-layersetup/oe-layersetup.bb | 2 +- .../recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb | 2 +- .../recipes-apps/barcode-demo/barcode-roi_git.bb | 2 +- .../recipes-apps/big-data-ipc-demo/big-data-ipc-demo.inc | 4 ++-- meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb | 2 +- .../recipes-apps/image-gallery/image-gallery_git.bb | 2 +- .../mmwavegesture-hmi/mmwavegesture-hmi_git.bb | 2 +- .../pdm-anomaly-detection/pdm-anomaly-detection_git.bb | 2 +- .../point-cloud-viewer/point-cloud-viewer_git.bb | 2 +- .../protection-relays-hmi/protection-relays-hmi_git.bb | 2 +- .../recipes-apps/thermostat-demo/qt-tstat_2.0.bb | 2 +- .../qt-opencv-opencl-opengl-multithreaded_git.bb | 2 +- .../arm-benchmarks/arm-benchmarks_1.3.bb | 2 +- meta-arago-extras/recipes-benchmark/stream/stream_5.10.bb | 2 +- .../recipes-bsp/switch-config/switch-config_git.bb | 2 +- meta-arago-extras/recipes-connectivity/hostap/hostap.inc | 2 +- .../wpa-supplicant/wpa-supplicant.inc | 2 +- .../recipes-core/am-sysinfo/am-sysinfo_git.bb | 2 +- meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb | 8 ++++---- .../recipes-core/matrix/matrix-gui-apps-git.inc | 2 +- .../recipes-core/matrix/matrix-gui-browser_2.0.bb | 2 +- meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb | 2 +- .../recipes-core/matrix/refresh-screen_2.0.bb | 2 +- .../recipes-core/oprofile-example/oprofile-example_git.bb | 2 +- .../ti-crypto-examples/ti-crypto-examples_git.bb | 2 +- .../recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb | 2 +- meta-arago-extras/recipes-devtools/statcol/statcol.bb | 4 ++-- .../recipes-devtools/util-scripts/glsdk-util-scripts.bb | 2 +- .../glsdk-example-apps/glsdk-example-apps.bb | 2 +- .../recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb | 2 +- .../recipes-graphics/omapdrmtest/omapdrmtest_1.0.0.bb | 2 +- .../ti-gc320-tests/ti-gc320-tests_5.0.11.p7.bb | 2 +- meta-arago-extras/recipes-kernel/pcitest/pcitest_5.10.bb | 2 +- .../amsdk-av-files/amsdk-av-files_1.4.bb | 2 +- .../dual-camera-demo/dual-camera-demo_1.0.bb | 2 +- .../gst-plugins-ti/gstreamer1.0-plugins-dsp66_git.bb | 2 +- .../gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb | 2 +- .../gst-plugins-ti/gstreamer1.0-plugins-hevc_git.bb | 2 +- .../gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb | 2 +- .../hevc-arm-decoder/hevc-arm-decoder_git.bb | 2 +- .../recipes-support/cclink/ccief-basic_git.bb | 4 ++-- .../tensorflow-lite/tensorflow-lite-demo_git.bb | 2 +- meta-arago-extras/recipes-ti/fftlib/fftlib.inc | 4 ++-- meta-arago-extras/recipes-ti/libarch/libarch.inc | 2 +- meta-arago-extras/recipes-ti/linalg/linalg.inc | 4 ++-- meta-arago-extras/recipes-ti/llvm-rtos/llvm-rtos.inc | 4 ++-- meta-arago-extras/recipes-ti/ocl-rtos/clocl-win_git.bb | 2 +- meta-arago-extras/recipes-ti/ocl/ocl.inc | 4 ++-- meta-arago-extras/recipes-ti/ocl/opencl-tidl-fw_git.bb | 4 ++-- meta-arago-extras/recipes-ti/openmpacc/openmpacc.inc | 4 ++-- meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc | 4 ++-- meta-arago-extras/recipes-ti/tidl-utils/tidl-utils.inc | 2 +- meta-arago-extras/recipes-ti/tiovx/tiovx-lib-host.bb | 2 +- meta-arago-extras/recipes-ti/tiovx/tiovx-sys.inc | 2 +- 58 files changed, 74 insertions(+), 74 deletions(-) diff --git a/meta-arago-distro/conf/distro/include/branding-bleeding.inc b/meta-arago-distro/conf/distro/include/branding-bleeding.inc index 4054c5af..0008a442 100644 --- a/meta-arago-distro/conf/distro/include/branding-bleeding.inc +++ b/meta-arago-distro/conf/distro/include/branding-bleeding.inc @@ -20,8 +20,8 @@ TI_LINUX_FW_SRCREV = "${AUTOREV}" K3_IMAGE_GEN_SRCREV = "${AUTOREV}" # Point to latest nightly metadata -#TI_RTOS_METADATA_URI = "git://git.ti.com/processor-sdk/coresdk_rtos_releases.git" -#TI_RTOS_METADATA_PROTOCOL = "git" +#TI_RTOS_METADATA_URI = "git://git.ti.com/git/processor-sdk/coresdk_rtos_releases.git" +#TI_RTOS_METADATA_PROTOCOL = "https" TI_RTOS_METADATA_SRCREV = "${AUTOREV}" TI_RTOS_METADATA_BRANCH = "next" diff --git a/meta-arago-distro/recipes-connectivity/linuxptp/linuxptp_3.0.bbappend b/meta-arago-distro/recipes-connectivity/linuxptp/linuxptp_3.0.bbappend index 06329b6e..cf11b475 100644 --- a/meta-arago-distro/recipes-connectivity/linuxptp/linuxptp_3.0.bbappend +++ b/meta-arago-distro/recipes-connectivity/linuxptp/linuxptp_3.0.bbappend @@ -5,7 +5,7 @@ BRANCH = "ti-linuxptp" SRCREV = "f155c21283a0421f5e1e0b5e850c8a9a71d72453" SRC_URI = " \ - git://git.ti.com/processor-sdk/linuxptp.git;branch=${BRANCH} \ + git://git.ti.com/git/processor-sdk/linuxptp.git;branch=${BRANCH} \ file://build-Allow-CC-and-prefix-to-be-overriden.patch \ file://Use-cross-cpp-in-incdefs.patch \ " diff --git a/meta-arago-distro/recipes-core/meta/external-arm-toolchain.bbappend b/meta-arago-distro/recipes-core/meta/external-arm-toolchain.bbappend index ddf37ee2..ce22c453 100644 --- a/meta-arago-distro/recipes-core/meta/external-arm-toolchain.bbappend +++ b/meta-arago-distro/recipes-core/meta/external-arm-toolchain.bbappend @@ -6,8 +6,8 @@ BRANCH = "ti-linux-5.10.y" SRCREV = "bdfd5b0c1ee5617c9a94bacad0d818920d95b486" -KERNEL_GIT_URI = "git://git.ti.com/ti-linux-kernel/ti-linux-kernel.git" -KERNEL_GIT_PROTOCOL = "git" +KERNEL_GIT_URI = "git://git.ti.com/git/ti-linux-kernel/ti-linux-kernel.git" +KERNEL_GIT_PROTOCOL = "https" SRC_URI += "${KERNEL_GIT_URI};protocol=${KERNEL_GIT_PROTOCOL};branch=${BRANCH}" PKGV:linux-libc-headers-dev = "5.10" diff --git a/meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers_5.10.bb b/meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers_5.10.bb index 4cd0ee1b..43493570 100644 --- a/meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers_5.10.bb +++ b/meta-arago-distro/recipes-kernel/linux-libc-headers/linux-libc-headers_5.10.bb @@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" BRANCH = "ti-linux-5.10.y" SRCREV = "73aa709ca10103b61fba3a07471dbb4dcb56db45" -KERNEL_GIT_URI = "git://git.ti.com/ti-linux-kernel/ti-linux-kernel.git" -KERNEL_GIT_PROTOCOL = "git" +KERNEL_GIT_URI = "git://git.ti.com/git/ti-linux-kernel/ti-linux-kernel.git" +KERNEL_GIT_PROTOCOL = "https" SRC_URI = "${KERNEL_GIT_URI};protocol=${KERNEL_GIT_PROTOCOL};branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-distro/recipes-tisdk/oe-layersetup/oe-layersetup.bb b/meta-arago-distro/recipes-tisdk/oe-layersetup/oe-layersetup.bb index 917aa1bf..1600b679 100644 --- a/meta-arago-distro/recipes-tisdk/oe-layersetup/oe-layersetup.bb +++ b/meta-arago-distro/recipes-tisdk/oe-layersetup/oe-layersetup.bb @@ -8,6 +8,6 @@ inherit allarch BRANCH ?= "master" SRCREV = "e58f941784fb45fd826779a45b33973e6342700f" -SRC_URI = "git://git.ti.com/git/arago-project/oe-layersetup.git;protocol=https;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/git/arago-project/oe-layersetup.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb index b4eb8244..e000e8c7 100644 --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-setup/ti-tisdk-setup.bb @@ -6,7 +6,7 @@ PR = "r47" BRANCH ?= "master" SRCREV = "eae21af9be4e7a0028045cc3e4038fe2157a266d" -SRC_URI = "git://git.ti.com/arago-project/tisdk-setup-scripts.git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/arago-project/tisdk-setup-scripts.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-apps/barcode-demo/barcode-roi_git.bb b/meta-arago-extras/recipes-apps/barcode-demo/barcode-roi_git.bb index 7d82b0ec..ddad14c2 100644 --- a/meta-arago-extras/recipes-apps/barcode-demo/barcode-roi_git.bb +++ b/meta-arago-extras/recipes-apps/barcode-demo/barcode-roi_git.bb @@ -13,7 +13,7 @@ PV = "01.00.00" PR = "r1" BRANCH = "master" -SRC_URI = "git://git.ti.com/apps/barcode-roi-detection.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/apps/barcode-roi-detection.git;protocol=https;branch=${BRANCH}" SRCREV = "50fa051f66012ebaa10eba1cb289287c4c5e7432" diff --git a/meta-arago-extras/recipes-apps/big-data-ipc-demo/big-data-ipc-demo.inc b/meta-arago-extras/recipes-apps/big-data-ipc-demo/big-data-ipc-demo.inc index 32ead99c..0b8a0611 100644 --- a/meta-arago-extras/recipes-apps/big-data-ipc-demo/big-data-ipc-demo.inc +++ b/meta-arago-extras/recipes-apps/big-data-ipc-demo/big-data-ipc-demo.inc @@ -4,8 +4,8 @@ LIC_FILES_CHKSUM = "file://makefile;beginline=1;endline=31;md5=2f2ea348b98d5cc78 COMPATIBLE_MACHINE = "omap-a15" PACKAGE_ARCH = "${MACHINE_ARCH}" -BIG_DATA_IPC_GIT_URI = "git://git.ti.com/processor-sdk/big-data-ipc-examples.git" -BIG_DATA_IPC_GIT_PROTOCOL = "git" +BIG_DATA_IPC_GIT_URI = "git://git.ti.com/git/processor-sdk/big-data-ipc-examples.git" +BIG_DATA_IPC_GIT_PROTOCOL = "https" BIG_DATA_IPC_GIT_BRANCH = "master" # Below commit ID corresponds to "DEV.BIG_DATA_IPC.01.03.00.00" diff --git a/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb b/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb index a5083999..9adc7363 100644 --- a/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb +++ b/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb @@ -8,7 +8,7 @@ PV = "1.0" PR = "r1" BRANCH = "master" -SRC_URI = "git://git.ti.com/sitara-linux/evse-hmi.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/sitara-linux/evse-hmi.git;protocol=https;branch=${BRANCH}" SRCREV = "d8c309d2832735f8df84db9993a01d861fdc02d7" diff --git a/meta-arago-extras/recipes-apps/image-gallery/image-gallery_git.bb b/meta-arago-extras/recipes-apps/image-gallery/image-gallery_git.bb index 9625084b..1a6737cf 100644 --- a/meta-arago-extras/recipes-apps/image-gallery/image-gallery_git.bb +++ b/meta-arago-extras/recipes-apps/image-gallery/image-gallery_git.bb @@ -13,7 +13,7 @@ PR = "r5" BRANCH = "master" SRCREV = "d9a2f2e27f59f3bbcde91efc6afba8cd04f3b4be" -SRC_URI = "git://git.ti.com/matrix-gui-v2/image-gallery.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/matrix-gui-v2/image-gallery.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-apps/mmwavegesture-hmi/mmwavegesture-hmi_git.bb b/meta-arago-extras/recipes-apps/mmwavegesture-hmi/mmwavegesture-hmi_git.bb index d5f9e43c..127cc2a7 100644 --- a/meta-arago-extras/recipes-apps/mmwavegesture-hmi/mmwavegesture-hmi_git.bb +++ b/meta-arago-extras/recipes-apps/mmwavegesture-hmi/mmwavegesture-hmi_git.bb @@ -8,7 +8,7 @@ PV = "1.0" PR = "r0" BRANCH = "master" -SRC_URI = "git://git.ti.com/sitara-linux/mmwavegesture-hmi.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/sitara-linux/mmwavegesture-hmi.git;protocol=https;branch=${BRANCH}" SRCREV = "0881fc8bc5b3c3411af7b69c3837a8b3a1fbedc5" diff --git a/meta-arago-extras/recipes-apps/pdm-anomaly-detection/pdm-anomaly-detection_git.bb b/meta-arago-extras/recipes-apps/pdm-anomaly-detection/pdm-anomaly-detection_git.bb index 93317486..7a419974 100644 --- a/meta-arago-extras/recipes-apps/pdm-anomaly-detection/pdm-anomaly-detection_git.bb +++ b/meta-arago-extras/recipes-apps/pdm-anomaly-detection/pdm-anomaly-detection_git.bb @@ -8,7 +8,7 @@ PV = "1.0" PR = "r2" BRANCH = "master" -SRC_URI = "git://git.ti.com/apps/pdm-anomaly-detection.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/apps/pdm-anomaly-detection.git;protocol=https;branch=${BRANCH}" SRCREV = "2ccf0e5e5aaac73166d52374650a25652bd6aed2" diff --git a/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb b/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb index bbc2558e..0388a2e0 100644 --- a/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb +++ b/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb @@ -13,7 +13,7 @@ COMPATIBLE_MACHINE = "dra7xx" BRANCH = "master" -SRC_URI = "git://git.ti.com/processor-sdk/point-cloud-viewer.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/processor-sdk/point-cloud-viewer.git;protocol=https;branch=${BRANCH}" SRCREV = "f0af54e63a6c802b4f8f0657873e74f1cb486e86" diff --git a/meta-arago-extras/recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb b/meta-arago-extras/recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb index 018859e0..95977162 100644 --- a/meta-arago-extras/recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb +++ b/meta-arago-extras/recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb @@ -8,7 +8,7 @@ PV = "1.0" PR = "r0" BRANCH = "master" -SRC_URI = "git://git.ti.com/sitara-linux/protection-relays-hmi.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/sitara-linux/protection-relays-hmi.git;protocol=https;branch=${BRANCH}" SRCREV = "b116b5628a68ba3b6db88435023cf034504655d3" diff --git a/meta-arago-extras/recipes-apps/thermostat-demo/qt-tstat_2.0.bb b/meta-arago-extras/recipes-apps/thermostat-demo/qt-tstat_2.0.bb index 84ef96ea..29aa689d 100644 --- a/meta-arago-extras/recipes-apps/thermostat-demo/qt-tstat_2.0.bb +++ b/meta-arago-extras/recipes-apps/thermostat-demo/qt-tstat_2.0.bb @@ -19,7 +19,7 @@ DEPENDS += "qtsvg qtscript" BRANCH ?= "master" SRCREV = "665bff9a7bc0dbf82f9d6a58ff2778c03fe04fd1" -SRC_URI = "git://git.ti.com/apps/thermostat-demo.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/apps/thermostat-demo.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-apps/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb b/meta-arago-extras/recipes-apps/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb index 5b085641..12793df0 100644 --- a/meta-arago-extras/recipes-apps/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb +++ b/meta-arago-extras/recipes-apps/video-analytics-demo/qt-opencv-opencl-opengl-multithreaded_git.bb @@ -17,7 +17,7 @@ PV = "1.3.3" PR = "r3" BRANCH = "master" -SRC_URI = "git://git.ti.com/apps/qt-opencv-opencl-opengl-multithreaded.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/apps/qt-opencv-opencl-opengl-multithreaded.git;protocol=https;branch=${BRANCH}" SRCREV = "80051ec8befd921e40cfb74a49234ed045576bbc" diff --git a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb index 356b8d91..3e67b960 100644 --- a/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb +++ b/meta-arago-extras/recipes-benchmark/arm-benchmarks/arm-benchmarks_1.3.bb @@ -9,7 +9,7 @@ PR = "r13" BRANCH ?= "master" SRCREV = "fefaf9bdd6f36ab0cebaab8dbf34e5beb50f471c" -SRC_URI = "git://git.ti.com/apps/arm_benchmarks.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/apps/arm_benchmarks.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-benchmark/stream/stream_5.10.bb b/meta-arago-extras/recipes-benchmark/stream/stream_5.10.bb index a3657b58..73b791e4 100644 --- a/meta-arago-extras/recipes-benchmark/stream/stream_5.10.bb +++ b/meta-arago-extras/recipes-benchmark/stream/stream_5.10.bb @@ -9,7 +9,7 @@ PR = "r0" BRANCH ?= "master" SRCREV = "b66f2bab5d6d0b35732ef8406ae03873725a3306" -SRC_URI = "git://git.ti.com/sitara-linux/stream.git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/sitara-linux/stream.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-bsp/switch-config/switch-config_git.bb b/meta-arago-extras/recipes-bsp/switch-config/switch-config_git.bb index 77fd3ecc..1160b45d 100644 --- a/meta-arago-extras/recipes-bsp/switch-config/switch-config_git.bb +++ b/meta-arago-extras/recipes-bsp/switch-config/switch-config_git.bb @@ -11,7 +11,7 @@ BRANCH:aarch64 ?= "am65x-v1.0" SRCREV = "412dce4e65cfe5af729be38fd1b4c1d59e9a8828" SRCREV:aarch64 = "0f52dcb3c4e3678e96427d546d6c2e1fabc2ad91" -SRC_URI = "git://git.ti.com/switch-config/switch-config.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/switch-config/switch-config.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-connectivity/hostap/hostap.inc b/meta-arago-extras/recipes-connectivity/hostap/hostap.inc index 72cdc4b1..6695d3a3 100644 --- a/meta-arago-extras/recipes-connectivity/hostap/hostap.inc +++ b/meta-arago-extras/recipes-connectivity/hostap/hostap.inc @@ -18,7 +18,7 @@ INITSCRIPT_NAME="hostapd" CONFFILES:${PN} += "${sysconfdir}/hostapd.conf" -SRC_URI = "git://git.ti.com/wilink8-wlan/hostap.git;protocol=git;branch=${BRANCH} \ +SRC_URI = "git://git.ti.com/git/wilink8-wlan/hostap.git;protocol=https;branch=${BRANCH} \ file://defconfig \ file://init" diff --git a/meta-arago-extras/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc b/meta-arago-extras/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc index 53354375..9767e9ad 100644 --- a/meta-arago-extras/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc +++ b/meta-arago-extras/recipes-connectivity/wpa-supplicant/wpa-supplicant.inc @@ -18,7 +18,7 @@ DEFAULT_PREFERENCE = "-1" PR = "r9" -SRC_URI = "git://git.ti.com/wilink8-wlan/hostap.git;protocol=git;branch=${BRANCH} \ +SRC_URI = "git://git.ti.com/git/wilink8-wlan/hostap.git;protocol=https;branch=${BRANCH} \ file://defconfig \ file://wpa-supplicant.sh \ file://wpa_supplicant.conf \ diff --git a/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb b/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb index 6f38b750..7a437fe8 100644 --- a/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb +++ b/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb @@ -10,7 +10,7 @@ PR = "r10" BRANCH ?= "master" SRCREV = "5df7da69a50d27b7f594db0918c5e6793c3a6237" -SRC_URI = "git://git.ti.com/apps/am_sysinfo.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/apps/am_sysinfo.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb b/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb index 05c71a1d..31e9ea8c 100644 --- a/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb +++ b/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb @@ -23,15 +23,15 @@ DEPENDS:append:class-target = " valgrind" LLVM_DIR = "ti-llvm${PV}" LLVM_GIT_NAME = "llvm" -LLVM_GIT_URI = "git://git.ti.com/opencl/llvm.git" -LLVM_GIT_PROTOCOL = "git" +LLVM_GIT_URI = "git://git.ti.com/git/opencl/llvm.git" +LLVM_GIT_PROTOCOL = "https" LLVM_GIT_BRANCH = "release_36_ti" LLVM_GIT_DESTSUFFIX = "git" LLVM_GIT_SRCREV = "09780c6750b30da81e4a0a805aedf1699fbc37c7" CLANG_GIT_NAME = "clang" -CLANG_GIT_URI = "git://git.ti.com/opencl/clang.git" -CLANG_GIT_PROTOCOL = "git" +CLANG_GIT_URI = "git://git.ti.com/git/opencl/clang.git" +CLANG_GIT_PROTOCOL = "https" CLANG_GIT_BRANCH = "release_36_ti" CLANG_GIT_DESTSUFFIX = "${LLVM_GIT_DESTSUFFIX}/tools/clang" CLANG_GIT_SRCREV = "5b006f07bdc22b5ae6917eecdfe243908dd7b029" diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc index 5d6df788..94776f54 100644 --- a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc @@ -3,7 +3,7 @@ LICENSE = "CC-BY-SA-3.0" LICENSE_CHECKSUM = "LICENSE;md5=6e0ae7214f6c74c149cb25f373057fa9" LIC_FILES_CHKSUM := "file://../${LICENSE_CHECKSUM}" -SRC_URI = "git://git.ti.com/matrix-gui-v2/matrix-gui-v2-apps.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/matrix-gui-v2/matrix-gui-v2-apps.git;protocol=https;branch=${BRANCH}" SRCREV = "cad105b0c2b75a90f4def523b4fdbd0b6aa2fe8e" BRANCH = "master" INC_PR = "r76" diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb index 578cff50..1d58363f 100644 --- a/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb @@ -13,7 +13,7 @@ SRCREV = "78ad5db716d1abc4c05abfe435f066b6b88454d5" BRANCH ?= "master" -SRC_URI = "git://git.ti.com/matrix-gui-v2/matrix_browser.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/matrix-gui-v2/matrix_browser.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb index 40ad55d3..047e9dbd 100644 --- a/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui_2.0.bb @@ -20,7 +20,7 @@ SRCREV = "9a2d12590102fefc5c29fc9e8d346ce6b0198468" MATRIX_INITSCRIPT = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'init', 'init.eglfs', d)}" -SRC_URI = "git://git.ti.com/matrix-gui-v2/matrix-gui-v2.git;protocol=git;branch=${BRANCH} \ +SRC_URI = "git://git.ti.com/git/matrix-gui-v2/matrix-gui-v2.git;protocol=https;branch=${BRANCH} \ file://${MATRIX_INITSCRIPT} \ file://php.ini \ file://matrix-gui-2.0.service \ diff --git a/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb b/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb index 4cc9859a..bd81bca8 100644 --- a/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb +++ b/meta-arago-extras/recipes-core/matrix/refresh-screen_2.0.bb @@ -10,7 +10,7 @@ PR = "r9" SRCREV = "4c8817e28ceed2dd886761e3ec1971b11436ba33" BRANCH ?= "master" -SRC_URI = "git://git.ti.com/matrix-gui-v2/refresh-screen.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/matrix-gui-v2/refresh-screen.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb b/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb index ff0347d6..0216e5db 100644 --- a/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb +++ b/meta-arago-extras/recipes-core/oprofile-example/oprofile-example_git.bb @@ -13,7 +13,7 @@ PR = "r4" BRANCH ?= "master" SRCREV = "066ecdab2bf0788eec253bf27fd44f7436f0cd04" -SRC_URI = "git://git.ti.com/apps/oprofile-example.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/apps/oprofile-example.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb index 6cd8d466..10f14478 100644 --- a/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb +++ b/meta-arago-extras/recipes-core/ti-crypto-examples/ti-crypto-examples_git.bb @@ -10,7 +10,7 @@ PR = "r7" BRANCH ?= "master" SRCREV = "6f4b09fffe970bb6b448369875874e798ef282f6" -SRC_URI = "git://git.ti.com/git/arago-project-org/crypto-example-apps.git;protocol=https;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/git/arago-project-org/crypto-example-apps.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" 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 index e30c5e27..9ea0df36 100644 --- a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb +++ b/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb @@ -18,7 +18,7 @@ SRCREV = "cfff0a2c889f29c03b9a3ee547a147b1c6727e2c" BRANCH ?= "master" SRC_URI:remove = "git://github.com/linux-test-project/ltp.git;protocol=https;branch=master" -SRC_URI:prepend = "git://git.ti.com/test-automation/ltp-ddt.git;branch=${BRANCH} " +SRC_URI:prepend = "git://git.ti.com/git/test-automation/ltp-ddt.git;protocol=https;branch=${BRANCH} " export prefix = "/opt/ltp" export exec_prefix = "/opt/ltp" diff --git a/meta-arago-extras/recipes-devtools/statcol/statcol.bb b/meta-arago-extras/recipes-devtools/statcol/statcol.bb index ee2b12d2..5cae05d7 100644 --- a/meta-arago-extras/recipes-devtools/statcol/statcol.bb +++ b/meta-arago-extras/recipes-devtools/statcol/statcol.bb @@ -3,10 +3,10 @@ SUMMARY = "Statistics collector application" LICENSE = "TI-TSPA" LIC_FILES_CHKSUM = "file://LICENSE;md5=bb6bc27cd44417c389a180bd62f552a0" -PROTOCOL = "git" +PROTOCOL = "https" BRANCH = "master" SRCREV = "dd0131eadf3633e8f9d06cb390d3c6c1b074d873" -SRC_URI = "git://git.ti.com/glsdk/statcol.git;protocol=${PROTOCOL};branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/glsdk/statcol.git;protocol=${PROTOCOL};branch=${BRANCH}" DEPENDS = "ti-rpmsg-char websocketd" RDEPENDS:${PN} = "bash" diff --git a/meta-arago-extras/recipes-devtools/util-scripts/glsdk-util-scripts.bb b/meta-arago-extras/recipes-devtools/util-scripts/glsdk-util-scripts.bb index 5ed4e034..1ab1cbc1 100644 --- a/meta-arago-extras/recipes-devtools/util-scripts/glsdk-util-scripts.bb +++ b/meta-arago-extras/recipes-devtools/util-scripts/glsdk-util-scripts.bb @@ -6,7 +6,7 @@ COMPATIBLE_MACHINE = "omap-a15|j7" PACKAGE_ARCH = "${MACHINE_ARCH}" RDEPENDS:${PN} += "bash" -SRC_URI = "git://git.ti.com/glsdk/util-scripts.git;branch=master" +SRC_URI = "git://git.ti.com/git/glsdk/util-scripts.git;protocol=https;branch=master" SRCREV = "5a3f8eca444a5c4bf8855705a3018d482e3e19cd" diff --git a/meta-arago-extras/recipes-graphics/glsdk-example-apps/glsdk-example-apps.bb b/meta-arago-extras/recipes-graphics/glsdk-example-apps/glsdk-example-apps.bb index de725c07..6827ed31 100644 --- a/meta-arago-extras/recipes-graphics/glsdk-example-apps/glsdk-example-apps.bb +++ b/meta-arago-extras/recipes-graphics/glsdk-example-apps/glsdk-example-apps.bb @@ -11,7 +11,7 @@ S = "${WORKDIR}/git" inherit autotools pkgconfig -SRC_URI = "git://git.ti.com/glsdk/example-applications.git;protocol=git;branch=master \ +SRC_URI = "git://git.ti.com/git/glsdk/example-applications.git;protocol=https;branch=master \ " SRCREV="52466430609c402a9f1c0667ccf727d096336d0d" diff --git a/meta-arago-extras/recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb b/meta-arago-extras/recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb index d855d191..7cd6d8c9 100644 --- a/meta-arago-extras/recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb +++ b/meta-arago-extras/recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb @@ -6,7 +6,7 @@ CLEANBROKEN = "1" BRANCH = "master" -SRC_URI = "git://git.ti.com/graphics/img-pvr-sdk.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/graphics/img-pvr-sdk.git;protocol=https;branch=${BRANCH}" SRCREV = "e52592c843ad16be31db411b85c4059d82c4a6b9" PR = "r19" diff --git a/meta-arago-extras/recipes-graphics/omapdrmtest/omapdrmtest_1.0.0.bb b/meta-arago-extras/recipes-graphics/omapdrmtest/omapdrmtest_1.0.0.bb index 8804544f..11251ee0 100644 --- a/meta-arago-extras/recipes-graphics/omapdrmtest/omapdrmtest_1.0.0.bb +++ b/meta-arago-extras/recipes-graphics/omapdrmtest/omapdrmtest_1.0.0.bb @@ -15,7 +15,7 @@ SRCREV = "1fceb3ac4b0e7ed014000a10dfe6ca8729f9cd8d" EXTRA_OEMAKE = "CC="${CC}"" TARGET_CC_ARCH += "${LDFLAGS}" -SRC_URI = "git://git.ti.com/glsdk/omapdrmtest.git;protocol=git \ +SRC_URI = "git://git.ti.com/git/glsdk/omapdrmtest.git;protocol=https \ file://0001-Makefile.am-lblah-flags-belong-to-LDADD-not-LDFLAGS.patch \ " diff --git a/meta-arago-extras/recipes-graphics/ti-gc320-tests/ti-gc320-tests_5.0.11.p7.bb b/meta-arago-extras/recipes-graphics/ti-gc320-tests/ti-gc320-tests_5.0.11.p7.bb index e84195ff..f9b9685f 100644 --- a/meta-arago-extras/recipes-graphics/ti-gc320-tests/ti-gc320-tests_5.0.11.p7.bb +++ b/meta-arago-extras/recipes-graphics/ti-gc320-tests/ti-gc320-tests_5.0.11.p7.bb @@ -7,7 +7,7 @@ DEPENDS = "ti-gc320-libs" BRANCH = "ti-${PV}" -SRC_URI = "git://git.ti.com/graphics/ti-gc320-test.git;protocol=git;branch=${BRANCH} \ +SRC_URI = "git://git.ti.com/git/graphics/ti-gc320-test.git;protocol=https;branch=${BRANCH} \ file://0001-makefile.linux.def-relax-assignment-of-CC-and-other-.patch \ " SRCREV = "53207f8e360a3336276b62066a1d8a9e923de17e" diff --git a/meta-arago-extras/recipes-kernel/pcitest/pcitest_5.10.bb b/meta-arago-extras/recipes-kernel/pcitest/pcitest_5.10.bb index 02188c97..8f2d27ca 100644 --- a/meta-arago-extras/recipes-kernel/pcitest/pcitest_5.10.bb +++ b/meta-arago-extras/recipes-kernel/pcitest/pcitest_5.10.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" BRANCH = "ti-linux-5.10.y" SRCREV = "73aa709ca10103b61fba3a07471dbb4dcb56db45" -SRC_URI = "git://git.ti.com/ti-linux-kernel/ti-linux-kernel.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/ti-linux-kernel/ti-linux-kernel.git;protocol=https;branch=${BRANCH}" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb b/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb index 2d9f41b0..7267668b 100644 --- a/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb +++ b/meta-arago-extras/recipes-multimedia/amsdk-av-files/amsdk-av-files_1.4.bb @@ -20,7 +20,7 @@ VIDEO_FILES:append:k3 = "video_720p" BRANCH = "master" -SRC_URI = "git://git.ti.com/processor-sdk/amsdk-av-files.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/processor-sdk/amsdk-av-files.git;protocol=https;branch=${BRANCH}" SRCREV = "1b73009090265328ebaf1b6c880dfeccae5a8f19" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb b/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb index c7d5a817..157e5602 100644 --- a/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb +++ b/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb @@ -12,7 +12,7 @@ PR = "r20" BRANCH = "master" SRCREV = "3188b1eacb14dda0dcf3a58877962d86687b6d20" -SRC_URI = "git://git.ti.com/sitara-linux/dual-camera-demo.git;protocol=git;branch=${BRANCH} \ +SRC_URI = "git://git.ti.com/git/sitara-linux/dual-camera-demo.git;protocol=https;branch=${BRANCH} \ file://desc_dual-camera.html \ file://dual_camera_qt5.sh \ file://dual_camera_qt4.sh \ diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-dsp66_git.bb b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-dsp66_git.bb index c9505652..d92efb9b 100644 --- a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-dsp66_git.bb +++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-dsp66_git.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://git.ti.com/processor-sdk/gst-plugin-dsp66" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://COPYING;md5=2827f94fc0a1adeff4d9702e97ce2979" -SRC_URI = "git://git.ti.com/processor-sdk/gst-plugin-dsp66.git;protocol=git;branch=master \ +SRC_URI = "git://git.ti.com/git/processor-sdk/gst-plugin-dsp66.git;protocol=https;branch=master \ file://0001-Makefile-correct-use-of-CPP-CXX-and-other-standard-v.patch \ file://0001-configure.ac-stop-using-export-symbols-regex.patch \ " diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb index ff0e87fd..1ff2dfb0 100644 --- a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb +++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb @@ -14,7 +14,7 @@ SRCREV = "7e3938f0854be99583f8b204f600907ea9e6471d" BRANCH ?= "master" SRC_URI = " \ - git://git.ti.com/glsdk/gst-plugin-ducati.git;protocol=git;branch=${BRANCH} \ + git://git.ti.com/git/glsdk/gst-plugin-ducati.git;protocol=https;branch=${BRANCH} \ file://0001-gstducati-configure.ac-stop-using-export-symbols-reg.patch \ " diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-hevc_git.bb b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-hevc_git.bb index 0125c245..f9d04e3d 100644 --- a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-hevc_git.bb +++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-hevc_git.bb @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=2827f94fc0a1adeff4d9702e97ce2979" COMPATIBLE_MACHINE = "dra7xx" -SRC_URI = "git://git.ti.com/processor-sdk/gst-plugin-hevc.git;protocol=git;branch=master \ +SRC_URI = "git://git.ti.com/git/processor-sdk/gst-plugin-hevc.git;protocol=https;branch=master \ file://0001-configure.ac-stop-using-export-symbols-regex.patch" SRCREV = "e4ea007d0ddeb95ae01742293454ef3c87a6e84c" diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb index a6f024f5..237031b1 100644 --- a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb +++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb @@ -12,6 +12,6 @@ REQUIRED_MACHINE_FEATURES = "mmip" PR = "${INC_PR}.20" SRCREV = "b9dba5a8bc7d14d55125abdce04672e3dc30bbdf" -SRC_URI = "git://git.ti.com/glsdk/gst-plugin-vpe.git;protocol=git \ +SRC_URI = "git://git.ti.com/git/glsdk/gst-plugin-vpe.git;protocol=https \ file://0001-gstvpe-configure.ac-stop-using-export-symbols-regex.patch \ " diff --git a/meta-arago-extras/recipes-multimedia/hevc-arm-decoder/hevc-arm-decoder_git.bb b/meta-arago-extras/recipes-multimedia/hevc-arm-decoder/hevc-arm-decoder_git.bb index 997ed451..3bcd6c7f 100644 --- a/meta-arago-extras/recipes-multimedia/hevc-arm-decoder/hevc-arm-decoder_git.bb +++ b/meta-arago-extras/recipes-multimedia/hevc-arm-decoder/hevc-arm-decoder_git.bb @@ -8,7 +8,7 @@ COMPATIBLE_MACHINE = "dra7xx" BRANCH = "master" -SRC_URI = "git://git.ti.com/processor-sdk/hevc_arm_decode.git;protocol=git;branch=${BRANCH} \ +SRC_URI = "git://git.ti.com/git/processor-sdk/hevc_arm_decode.git;protocol=https;branch=${BRANCH} \ file://Testparams.cfg \ " diff --git a/meta-arago-extras/recipes-support/cclink/ccief-basic_git.bb b/meta-arago-extras/recipes-support/cclink/ccief-basic_git.bb index 083eaf39..a2ade425 100644 --- a/meta-arago-extras/recipes-support/cclink/ccief-basic_git.bb +++ b/meta-arago-extras/recipes-support/cclink/ccief-basic_git.bb @@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://CCIEF-BASIC_Master/library/include/SLMP.h;beginline=1 PV = "1.0" PR = "r1" -CCIEF-BASIC_GIT_URI = "git://git.ti.com/processor-sdk/cclink.git" -CCIEF-BASIC_GIT_PROTOCOL = "git" +CCIEF-BASIC_GIT_URI = "git://git.ti.com/git/processor-sdk/cclink.git" +CCIEF-BASIC_GIT_PROTOCOL = "https" CCIEF-BASIC_GIT_BRANCH = "master" CCIEF-BASIC_SRCREV = "ec2a42e61c85c6a5e858438c590b052f2e780d6f" diff --git a/meta-arago-extras/recipes-support/tensorflow-lite/tensorflow-lite-demo_git.bb b/meta-arago-extras/recipes-support/tensorflow-lite/tensorflow-lite-demo_git.bb index c1e47def..fcbc84ab 100644 --- a/meta-arago-extras/recipes-support/tensorflow-lite/tensorflow-lite-demo_git.bb +++ b/meta-arago-extras/recipes-support/tensorflow-lite/tensorflow-lite-demo_git.bb @@ -17,7 +17,7 @@ PV = "01.00.00" PR = "r1" BRANCH = "master" -SRC_URI = "git://git.ti.com/apps/tensorflow-lite-examples.git;protocol=git;branch=${BRANCH} \ +SRC_URI = "git://git.ti.com/git/apps/tensorflow-lite-examples.git;protocol=https;branch=${BRANCH} \ http://storage.googleapis.com/download.tensorflow.org/models/tflite/gpu/deeplabv3_257_mv_gpu.tflite;name=deeplabv3;subdir=${WORKDIR}/model;destsuffix=model \ http://storage.googleapis.com/download.tensorflow.org/models/mobilenet_v1_2018_02_22/mobilenet_v1_1.0_224.tgz;name=mobilenetv1;subdir=${WORKDIR}/model;destsuffix=model \ http://raw.githubusercontent.com/google-coral/edgetpu/master/test_data/bird_segmentation.bmp;name=bird_segmentation;subdir=${WORKDIR}/test_data;destsuffix=test_data" diff --git a/meta-arago-extras/recipes-ti/fftlib/fftlib.inc b/meta-arago-extras/recipes-ti/fftlib/fftlib.inc index f6d5935a..49777a53 100644 --- a/meta-arago-extras/recipes-ti/fftlib/fftlib.inc +++ b/meta-arago-extras/recipes-ti/fftlib/fftlib.inc @@ -4,8 +4,8 @@ INC_PR = "r4" require recipes-ti/includes/arago-paths.inc -FFTLIB_GIT_URI = "git://git.ti.com/fftlib/fftlib" -FFTLIB_GIT_PROTOCOL = "git" +FFTLIB_GIT_URI = "git://git.ti.com/git/fftlib/fftlib" +FFTLIB_GIT_PROTOCOL = "https" FFTLIB_GIT_BRANCH = "master" FFTLIB_GIT_DESTSUFFIX = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-ti/libarch/libarch.inc b/meta-arago-extras/recipes-ti/libarch/libarch.inc index 1985a6b4..3c708250 100644 --- a/meta-arago-extras/recipes-ti/libarch/libarch.inc +++ b/meta-arago-extras/recipes-ti/libarch/libarch.inc @@ -14,7 +14,7 @@ REQUIRED_DISTRO_FEATURES = "opencl" BRANCH = "master" LIC_FILES_CHKSUM = "file://src/ti/libarch/docs/LibArch_1.0.0_manifest.html;md5=bb48cacb8827ec8d8e5a94c4f2425ee3" -SRC_URI = "git://git.ti.com/library-architecture/libarch.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/library-architecture/libarch.git;protocol=https;branch=${BRANCH}" SRCREV = "cb6d785e95cd390c6388853a4f1e99a302e5a58f" COMPATIBLE_MACHINE = "dra7xx" diff --git a/meta-arago-extras/recipes-ti/linalg/linalg.inc b/meta-arago-extras/recipes-ti/linalg/linalg.inc index 7cf16c9f..32459847 100644 --- a/meta-arago-extras/recipes-ti/linalg/linalg.inc +++ b/meta-arago-extras/recipes-ti/linalg/linalg.inc @@ -1,4 +1,4 @@ -HOMEPAGE = "git://git.ti.com/dense-linear-algebra-libraries/linalg.git" +HOMEPAGE = "git://git.ti.com/git/dense-linear-algebra-libraries/linalg.git" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://src/ti/linalg/docs/LINALG_1.2.0_manifest.html;md5=f30895e41e5947c3439b1ad4cf4c8555" @@ -16,7 +16,7 @@ REQUIRED_MACHINE_FEATURES = "dsp" REQUIRED_DISTRO_FEATURES = "opencl openmp" SRC_URI = " \ - git://git.ti.com/dense-linear-algebra-libraries/linalg.git;protocol=git;branch=${BRANCH} \ + git://git.ti.com/git/dense-linear-algebra-libraries/linalg.git;protocol=https;branch=${BRANCH} \ file://0001-Makefile-fix-toolchain-variables.patch \ file://0001-Makefile-pass-PARALLEL_MAKE-variable-to-overwrite-j8.patch \ " diff --git a/meta-arago-extras/recipes-ti/llvm-rtos/llvm-rtos.inc b/meta-arago-extras/recipes-ti/llvm-rtos/llvm-rtos.inc index 20fb132c..b2c14dda 100644 --- a/meta-arago-extras/recipes-ti/llvm-rtos/llvm-rtos.inc +++ b/meta-arago-extras/recipes-ti/llvm-rtos/llvm-rtos.inc @@ -4,8 +4,8 @@ INC_PR = "r0" LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=47e311aa9caedd1b3abf098bd7814d1d" LLVM_GIT_NAME = "llvm" -LLVM_GIT_URI = "git://git.ti.com/opencl/llvm.git" -LLVM_GIT_PROTOCOL = "git" +LLVM_GIT_URI = "git://git.ti.com/git/opencl/llvm.git" +LLVM_GIT_PROTOCOL = "https" LLVM_GIT_BRANCH = "release_36_ti" LLVM_GIT_DESTSUFFIX = "git" LLVM_GIT_SRCREV = "8ff2a35c586a3d3f624712e0943777613a017bc5" diff --git a/meta-arago-extras/recipes-ti/ocl-rtos/clocl-win_git.bb b/meta-arago-extras/recipes-ti/ocl-rtos/clocl-win_git.bb index d1fffae2..346b40d1 100644 --- a/meta-arago-extras/recipes-ti/ocl-rtos/clocl-win_git.bb +++ b/meta-arago-extras/recipes-ti/ocl-rtos/clocl-win_git.bb @@ -7,7 +7,7 @@ require recipes-ti/includes/arago-paths.inc PR = "${INC_PR}.0" -CLOCL_WIN_GIT_URI = "git://git.ti.com/opencl/clocl-win.git" +CLOCL_WIN_GIT_URI = "git://git.ti.com/git/opencl/clocl-win.git" CLOCL_WIN_GIT_BRANCH = "master" CLOCL_WIN_SRCREV = "eac7ac7cc2e64a9ff05e4238e44dff3f9a9fcf6b" diff --git a/meta-arago-extras/recipes-ti/ocl/ocl.inc b/meta-arago-extras/recipes-ti/ocl/ocl.inc index b03d2040..9a9231a8 100644 --- a/meta-arago-extras/recipes-ti/ocl/ocl.inc +++ b/meta-arago-extras/recipes-ti/ocl/ocl.inc @@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://../debian/copyright;md5=2e3965a73a8a49c23836467266120 FILESEXTRAPATHS:prepend := "${THISDIR}/ocl:" -OCL_GIT_URI = "git://git.ti.com/opencl/ti-opencl.git" -OCL_GIT_PROTOCOL = "git" +OCL_GIT_URI = "git://git.ti.com/git/opencl/ti-opencl.git" +OCL_GIT_PROTOCOL = "https" OCL_GIT_BRANCH = "master" OCL_SRCREV = "b1dfed9af21a1236380b9d643c432e4f0c619fce" diff --git a/meta-arago-extras/recipes-ti/ocl/opencl-tidl-fw_git.bb b/meta-arago-extras/recipes-ti/ocl/opencl-tidl-fw_git.bb index 67d1769a..46796147 100644 --- a/meta-arago-extras/recipes-ti/ocl/opencl-tidl-fw_git.bb +++ b/meta-arago-extras/recipes-ti/ocl/opencl-tidl-fw_git.bb @@ -12,8 +12,8 @@ COMPATIBLE_MACHINE = "dra7xx" PACKAGE_ARCH = "${MACHINE_ARCH}" -GIT_URI = "git://git.ti.com/opencl/opencl-firmware.git" -GIT_PROTOCOL = "git" +GIT_URI = "git://git.ti.com/git/opencl/opencl-firmware.git" +GIT_PROTOCOL = "https" BRANCH = "master" SRCREV = "9e3d0b34f604203f275fba4807481a8a763a4f63" diff --git a/meta-arago-extras/recipes-ti/openmpacc/openmpacc.inc b/meta-arago-extras/recipes-ti/openmpacc/openmpacc.inc index f8774810..a54fa48d 100644 --- a/meta-arago-extras/recipes-ti/openmpacc/openmpacc.inc +++ b/meta-arago-extras/recipes-ti/openmpacc/openmpacc.inc @@ -16,8 +16,8 @@ LIC_FILES_CHKSUM = "file://../debian/copyright;md5=aaa2a0939d08197132fc382e97b62 FILESEXTRAPATHS:prepend := "${THISDIR}/openmpacc:" -OMPACC_GIT_URI = "git://git.ti.com/openmp/ti-openmpacc.git" -OMPACC_GIT_PROTOCOL = "git" +OMPACC_GIT_URI = "git://git.ti.com/git/openmp/ti-openmpacc.git" +OMPACC_GIT_PROTOCOL = "https" OMPACC_GIT_BRANCH = "master" OMPACC_SRCREV = "7c4e68a0bf73ec193edff9dfc23ea764ae6ad434" diff --git a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc index 1f6bb442..389e565a 100644 --- a/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc +++ b/meta-arago-extras/recipes-ti/tidl-api/tidl-api.inc @@ -3,8 +3,8 @@ INC_PR = "r0" LIC_FILES_CHKSUM = "file://license.txt;md5=e3daeabffb9fc131a73f16d16cbdb118" -GIT_URI = "git://git.ti.com/tidl/tidl-api.git" -GIT_PROTOCOL = "git" +GIT_URI = "git://git.ti.com/git/tidl/tidl-api.git" +GIT_PROTOCOL = "https" BRANCH = "master" SRC_URI = "${GIT_URI};protocol=${GIT_PROTOCOL};branch=${BRANCH}" diff --git a/meta-arago-extras/recipes-ti/tidl-utils/tidl-utils.inc b/meta-arago-extras/recipes-ti/tidl-utils/tidl-utils.inc index 5ba5ffd8..80eefe9d 100644 --- a/meta-arago-extras/recipes-ti/tidl-utils/tidl-utils.inc +++ b/meta-arago-extras/recipes-ti/tidl-utils/tidl-utils.inc @@ -1,4 +1,4 @@ -SRC_URI = "git://git.ti.com/tidl/tidl-utils.git;protocol=git;branch=master" +SRC_URI = "git://git.ti.com/git/tidl/tidl-utils.git;protocol=https;branch=master" SRCREV = "6a51b2aff1709c13edb3445bdb4698a28fbb2ae7" PV = "01.01.03.02" PR = "r1" diff --git a/meta-arago-extras/recipes-ti/tiovx/tiovx-lib-host.bb b/meta-arago-extras/recipes-ti/tiovx/tiovx-lib-host.bb index 71b85d40..e2ee926e 100644 --- a/meta-arago-extras/recipes-ti/tiovx/tiovx-lib-host.bb +++ b/meta-arago-extras/recipes-ti/tiovx/tiovx-lib-host.bb @@ -15,7 +15,7 @@ PV = "01.00.00.00" PR = "r1" BRANCH = "master" -SRC_URI = "git://git.ti.com/processor-sdk/tiovx.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/processor-sdk/tiovx.git;protocol=https;branch=${BRANCH}" SRC_URI += "file://0001-Fix-paths-for-Yocto-build-and-add-RTOS-build-var.patch " SRCREV = "2bfa01201804eaf2e675c743e708e88ab612049e" diff --git a/meta-arago-extras/recipes-ti/tiovx/tiovx-sys.inc b/meta-arago-extras/recipes-ti/tiovx/tiovx-sys.inc index becf0cc1..41fc6825 100644 --- a/meta-arago-extras/recipes-ti/tiovx/tiovx-sys.inc +++ b/meta-arago-extras/recipes-ti/tiovx/tiovx-sys.inc @@ -2,4 +2,4 @@ PV = "01.00.01.00" BRANCH="master" SRCREV = "5be60aee8d013907a4d8a6cc8af35a517a33b49e" -SRC_URI = "git://git.ti.com/processor-sdk/tiovx-app.git;protocol=git;branch=${BRANCH}" +SRC_URI = "git://git.ti.com/git/processor-sdk/tiovx-app.git;protocol=https;branch=${BRANCH}" From patchwork Tue Sep 13 04:02:36 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12686 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 6AD24C6FA90 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.898.1663041770757102381 for ; Mon, 12 Sep 2022 21:02:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 4EF0C40D79 for ; Tue, 13 Sep 2022 04:02:49 +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 e98uwgjX_iIi for ; Tue, 13 Sep 2022 04:02:49 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 456CA40D94 for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id C6C8D1749DD for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 42/52] oe-core: Fix rm_work issue with some packages from oe-core. Date: Tue, 13 Sep 2022 04:02:36 +0000 Message-Id: <20220913040246.2365077-43-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14020 From: Ryan Eatmon There appears to be an issue with a few packages from oe-core and the rm_work feature when combined with the srcipk feature of arago. These recipes patch files and after the rm_work the bitbake flow does not re-fetch the source again, so the patch fails the second time around. Easy fix is to just exclude rm_worke on these packages. Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-devtools/opkg-utils/opkg-utils_%.bbappend | 3 +++ meta-arago-distro/recipes-devtools/swig/swig_%.bbappend | 3 +++ meta-arago-distro/recipes-extended/bc/bc_%.bbappend | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 meta-arago-distro/recipes-devtools/opkg-utils/opkg-utils_%.bbappend create mode 100644 meta-arago-distro/recipes-devtools/swig/swig_%.bbappend create mode 100644 meta-arago-distro/recipes-extended/bc/bc_%.bbappend diff --git a/meta-arago-distro/recipes-devtools/opkg-utils/opkg-utils_%.bbappend b/meta-arago-distro/recipes-devtools/opkg-utils/opkg-utils_%.bbappend new file mode 100644 index 00000000..29d90a9d --- /dev/null +++ b/meta-arago-distro/recipes-devtools/opkg-utils/opkg-utils_%.bbappend @@ -0,0 +1,3 @@ + +RM_WORK_EXCLUDE += "${PN}" + diff --git a/meta-arago-distro/recipes-devtools/swig/swig_%.bbappend b/meta-arago-distro/recipes-devtools/swig/swig_%.bbappend new file mode 100644 index 00000000..29d90a9d --- /dev/null +++ b/meta-arago-distro/recipes-devtools/swig/swig_%.bbappend @@ -0,0 +1,3 @@ + +RM_WORK_EXCLUDE += "${PN}" + diff --git a/meta-arago-distro/recipes-extended/bc/bc_%.bbappend b/meta-arago-distro/recipes-extended/bc/bc_%.bbappend new file mode 100644 index 00000000..29d90a9d --- /dev/null +++ b/meta-arago-distro/recipes-extended/bc/bc_%.bbappend @@ -0,0 +1,3 @@ + +RM_WORK_EXCLUDE += "${PN}" + From patchwork Tue Sep 13 04:02:37 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12706 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 CF5F1C6FD25 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.858.1663041770800115412 for ; Mon, 12 Sep 2022 21:02:51 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 5E4B940D6E for ; Tue, 13 Sep 2022 04:02:49 +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 M8rEnazCIh6L for ; Tue, 13 Sep 2022 04:02:49 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 533D740D94 for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id D1EEA1749E2 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 43/52] ti-test: Remove stream package Date: Tue, 13 Sep 2022 04:02:37 +0000 Message-Id: <20220913040246.2365077-44-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14021 From: Ryan Eatmon The stream recipe source code has disappered off of git.ti.com where it was being hosted, and has not made a reappearance on the internet as of yet. Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-core/packagegroups/ti-test.bb | 1 - 1 file changed, 1 deletion(-) diff --git a/meta-arago-distro/recipes-core/packagegroups/ti-test.bb b/meta-arago-distro/recipes-core/packagegroups/ti-test.bb index ee8bf04e..3e76a527 100644 --- a/meta-arago-distro/recipes-core/packagegroups/ti-test.bb +++ b/meta-arago-distro/recipes-core/packagegroups/ti-test.bb @@ -37,7 +37,6 @@ ARAGO_TEST = "\ linuxptp \ openntpd \ nbench-byte \ - stream \ " ARAGO_TEST:append:armv7a = " \ From patchwork Tue Sep 13 04:02:38 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12697 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 98C46C6FA9C for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.899.1663041770903436647 for ; Mon, 12 Sep 2022 21:02:51 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 735C340D7E for ; Tue, 13 Sep 2022 04:02:49 +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 wiUEvYrzm7Vp for ; Tue, 13 Sep 2022 04:02:49 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 69D8840D7D for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id DC8F71749E3 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 44/52] packagegroup-arago-tisdk-addons: Remove stream-openmp Date: Tue, 13 Sep 2022 04:02:38 +0000 Message-Id: <20220913040246.2365077-45-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14022 From: Ryan Eatmon The stream recipe source code has disappered off of git.ti.com where it was being hosted, and has not made a reappearance on the internet as of yet. Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../packagegroups/packagegroup-arago-tisdk-addons.bb | 1 - 1 file changed, 1 deletion(-) diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb index 46182c9d..5b6f05c9 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb @@ -49,7 +49,6 @@ UTILS:append:ti43x = " mmc-utils \ UTILS:append:omap-a15 = " mmc-utils \ switch-config \ libdrm-omap \ - stream-openmp \ pru-icss \ ti-ipc-rtos-fw \ uio-test-pruss \ From patchwork Tue Sep 13 04:02:39 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12681 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 5D794C6FA8B for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.888.1663041770997633754 for ; Mon, 12 Sep 2022 21:02:51 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 91DA440D99 for ; Tue, 13 Sep 2022 04:02:49 +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 BtwuqiBK4EZV for ; Tue, 13 Sep 2022 04:02:49 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 80F5140D7D for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id E75171749D7 for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 45/52] meta-arago-extras: recipes-devtools: eventdump: Fix linking against local library Date: Tue, 13 Sep 2022 04:02:39 +0000 Message-Id: <20220913040246.2365077-46-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14025 From: Nishanth Menon https://github.com/TI-ECS/eventdump unfortunately is a unmaintained project. LDFLAGS += -L$(NFSROOT)/lib should have dependent on NFSROOT variable. Instead this forces the eventdump to break the sandbox and attempt to link up against the local PC's lib - which is a NO-NO for many reasons. Reported to have failed on a Fedora system. Bump the PR up to indicate a fix up where we have proper linkage Reported-by: Daniel Thompson Signed-off-by: Nishanth Menon Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../eventdump/eventdump_git.bb | 7 ++-- ...Play_nicer_with_bitbake-OpenEmbedded.patch | 34 +++++++++++++++++++ 2 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 meta-arago-extras/recipes-devtools/eventdump/files/0001-PATCH_Makefile_Play_nicer_with_bitbake-OpenEmbedded.patch diff --git a/meta-arago-extras/recipes-devtools/eventdump/eventdump_git.bb b/meta-arago-extras/recipes-devtools/eventdump/eventdump_git.bb index d52d5eaf..6fc9f5df 100644 --- a/meta-arago-extras/recipes-devtools/eventdump/eventdump_git.bb +++ b/meta-arago-extras/recipes-devtools/eventdump/eventdump_git.bb @@ -2,12 +2,15 @@ SUMMARY = "Utility for parsing system events" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://eventdump.c;beginline=1;endline=34;md5=23b59be24a88ddc407b553035f3fd3e9" -PR = "r3" +PR = "r4" PV = "1.0+git${SRCPV}" SRCREV = "5db45a36a05a78ea44a4cb25312ed5ee3c2bd76d" -SRC_URI = "git://github.com/TI-ECS/eventdump.git;protocol=https;branch=master" +FILESEXTRAPATHS:prepend := "${THISDIR}/files:" + +SRC_URI = "git://github.com/TI-ECS/eventdump.git;protocol=https;branch=master \ + file://0001-PATCH_Makefile_Play_nicer_with_bitbake-OpenEmbedded.patch" S = "${WORKDIR}/git" diff --git a/meta-arago-extras/recipes-devtools/eventdump/files/0001-PATCH_Makefile_Play_nicer_with_bitbake-OpenEmbedded.patch b/meta-arago-extras/recipes-devtools/eventdump/files/0001-PATCH_Makefile_Play_nicer_with_bitbake-OpenEmbedded.patch new file mode 100644 index 00000000..b14d5bb3 --- /dev/null +++ b/meta-arago-extras/recipes-devtools/eventdump/files/0001-PATCH_Makefile_Play_nicer_with_bitbake-OpenEmbedded.patch @@ -0,0 +1,34 @@ +From e8c5094e2d59fe48ad0e7234f196d04508f53727 Mon Sep 17 00:00:00 2001 +From: Daniel Thompson +Date: Wed, 20 Jul 2022 18:05:09 +0100 +Subject: [PATCH] Makefile: Play nicer with bitbake/OpenEmbedded + +Unconditionally adding -L$(NFSROOT)/lib to the link line risks seriously +confusing the linker if NFSROOT is not set (which would be common when +building OE/bitbake) because we end up trying to link against whatever +zany things we might find in the host /lib directory). Fix this the +obvious way. + +Upstream-Status: Pending +Signed-off-by: Daniel Thompson +--- + Makefile | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/Makefile b/Makefile +index e313e50..afb5472 100755 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,9 @@ + CC = $(CROSS_COMPILE)gcc + CFLAGS = -O2 -Wall + ++ifneq ($(NFSROOT),) + LDFLAGS += -L$(NFSROOT)/lib ++endif + #LIBS += -lopenobex -lbluetooth -lmisc + + OBJS = eventdump.o +-- +2.36.1 + From patchwork Tue Sep 13 04:02:40 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12684 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 62C2BC6FA8E for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web10.887.1663041770961035764 for ; Mon, 12 Sep 2022 21:02:51 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 8DB4640D96 for ; Tue, 13 Sep 2022 04:02:49 +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 56Z76R6iRZ29 for ; Tue, 13 Sep 2022 04:02:49 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 7F86840D73 for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id F20AF1749DE for ; Tue, 13 Sep 2022 00:02:46 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 46/52] packagegroup-arago-base-tisdk: Add optee-examples Date: Tue, 13 Sep 2022 04:02:40 +0000 Message-Id: <20220913040246.2365077-47-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14023 From: Andrew Davis This includes demos of secure storage that we can use for testing DKEK and RPMB support. Add this package next to the other OP-TEE support packages. Signed-off-by: Andrew Davis Signed-off-by: Ryan Eatmon Signed-off-by: Denys Dmytriyenko --- .../recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb index 7812f981..292676c1 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb @@ -9,6 +9,7 @@ inherit packagegroup OPTEE_PKGS = " \ optee-client \ optee-test \ + optee-examples \ " RDEPENDS:${PN} = "\ From patchwork Tue Sep 13 04:02:41 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12729 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 07B05C54EE9 for ; Tue, 13 Sep 2022 04:03:07 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.863.1663041778367934232 for ; Mon, 12 Sep 2022 21:02:58 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 CE46940D44 for ; Tue, 13 Sep 2022 04:02:57 +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 XAveAUFsdgFU for ; Tue, 13 Sep 2022 04:02:57 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 8368540D95 for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 089EB1749E0 for ; Tue, 13 Sep 2022 00:02:47 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 47/52] ltp-ddt: update to the latest Date: Tue, 13 Sep 2022 04:02:41 +0000 Message-Id: <20220913040246.2365077-48-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:03:07 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14036 From: Denys Dmytriyenko This matches latest commit in Dunfell. Signed-off-by: Denys Dmytriyenko --- meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 index 9ea0df36..bf6e48c7 100644 --- a/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb +++ b/meta-arago-extras/recipes-devtools/ltp-ddt/ltp-ddt_20210524.bb @@ -14,7 +14,7 @@ PE = "1" PR = "r5" PV:append = "+git${SRCPV}" -SRCREV = "cfff0a2c889f29c03b9a3ee547a147b1c6727e2c" +SRCREV = "b79e1ec3e4f5501891fdf307548a9d6616b00bd0" BRANCH ?= "master" SRC_URI:remove = "git://github.com/linux-test-project/ltp.git;protocol=https;branch=master" From patchwork Tue Sep 13 04:02:42 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12727 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 0ADB8C6FD39 for ; Tue, 13 Sep 2022 04:02:57 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web08.901.1663041776314749680 for ; Mon, 12 Sep 2022 21:02:56 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 C1EFF40D6E for ; Tue, 13 Sep 2022 04:02:55 +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 Z0YknxglVV2q for ; Tue, 13 Sep 2022 04:02:55 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 82B5040D94 for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 142C21749E4 for ; Tue, 13 Sep 2022 00:02:47 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 48/52] ti-llvm3.6: specify SRCREV_FORMAT Date: Tue, 13 Sep 2022 04:02:42 +0000 Message-Id: <20220913040246.2365077-49-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:57 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14033 From: Denys Dmytriyenko When multiple SCMs are used, SRCREV_FORMAT is required for sstate to work properly. Signed-off-by: Denys Dmytriyenko --- meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb b/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb index 31e9ea8c..959b1f4b 100644 --- a/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb +++ b/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb @@ -45,6 +45,8 @@ SRC_URI = " \ SRCREV_${LLVM_GIT_NAME} = "${LLVM_GIT_SRCREV}" SRCREV_${CLANG_GIT_NAME} = "${CLANG_GIT_SRCREV}" +SRCREV_FORMAT = "${LLVM_GIT_NAME}" + S = "${WORKDIR}/git" LIBXML2_INC = "`pkg-config libxml-2.0 --cflags`" From patchwork Tue Sep 13 04:02:43 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12730 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 113F3C6FA82 for ; Tue, 13 Sep 2022 04:03:07 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web12.899.1663041778372038701 for ; Mon, 12 Sep 2022 21:02:58 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 CFA3C40D6E for ; Tue, 13 Sep 2022 04:02:57 +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 ze36_4GN-SYB for ; Tue, 13 Sep 2022 04:02:57 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 828DD40D8C for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 1FDC01749D1 for ; Tue, 13 Sep 2022 00:02:47 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 49/52] ti-llvm3.6: inherit pkgconfig Date: Tue, 13 Sep 2022 04:02:43 +0000 Message-Id: <20220913040246.2365077-50-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:03:07 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14035 From: Denys Dmytriyenko In order to use pkg-config tool. Signed-off-by: Denys Dmytriyenko --- meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb b/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb index 959b1f4b..03240e68 100644 --- a/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb +++ b/meta-arago-extras/recipes-core/llvm/ti-llvm3.6_3.6.bb @@ -15,6 +15,8 @@ do_configure:prepend() { require recipes-core/llvm/llvm.inc +inherit pkgconfig + LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=47e311aa9caedd1b3abf098bd7814d1d" DEPENDS += "libxml2 groff-native" From patchwork Tue Sep 13 04:02:44 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12694 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 92246C6FA99 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.860.1663041771058121492 for ; Mon, 12 Sep 2022 21:02:51 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 97B9D40D7D for ; Tue, 13 Sep 2022 04:02:49 +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 z2eXwW9yEGRs for ; Tue, 13 Sep 2022 04:02:49 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 8963940D7A for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 2B9931749DB for ; Tue, 13 Sep 2022 00:02:47 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 50/52] arago.conf: disable empty-dirs QA check Date: Tue, 13 Sep 2022 04:02:44 +0000 Message-Id: <20220913040246.2365077-51-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14026 From: Denys Dmytriyenko This QA check trips on our devkit default SDKPATH, which starts with /tmp Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/conf/distro/arago.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf index 61e0eabc..088faa16 100644 --- a/meta-arago-distro/conf/distro/arago.conf +++ b/meta-arago-distro/conf/distro/arago.conf @@ -217,3 +217,6 @@ LICENSE_FLAGS_ACCEPTED = "commercial_gst-ffmpeg commercial_gstreamer1.0-libav co # Do not package own copy of perl into devkit, rely on host one ASSUME_PROVIDED += "nativesdk-perl" + +# Disable empty-dirs QA check, which trips on our devkit default SDKPATH +ERROR_QA:remove = "empty-dirs" From patchwork Tue Sep 13 04:02:45 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12689 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 899A2C6FA96 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web09.934.1663041771123437943 for ; Mon, 12 Sep 2022 21:02:51 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 A150F40D75 for ; Tue, 13 Sep 2022 04:02:49 +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 AYG6ms-IRkb4 for ; Tue, 13 Sep 2022 04:02:49 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 9772A40D73 for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 369141666A7 for ; Tue, 13 Sep 2022 00:02:47 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 51/52] packagegroups: fix remainder of ${PN}-src instances Date: Tue, 13 Sep 2022 04:02:45 +0000 Message-Id: <20220913040246.2365077-52-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14027 From: Denys Dmytriyenko Commit 331e49bf718d0915c67cf59bf9734cf82b768b3a changed ${PN}-src into ${PN}-source, rename some left overs. Signed-off-by: Denys Dmytriyenko --- .../packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb | 4 ++-- .../packagegroup-arago-tisdk-multimedia-sdk-host.bb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb index a741eb03..d79d2756 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-host.bb @@ -50,7 +50,7 @@ UTILS:append:am65xx = " \ " UTILS:append:am64xx = " \ - pru-icss-src \ + pru-icss-source \ " EXTRA_LIBS = "" @@ -76,7 +76,7 @@ EXTRA_LIBS:append:ti43x = " \ " PDM_ANOMALY_PKG_SRC = "\ - ${@bb.utils.contains('MACHINE_FEATURES', 'gpu', 'pdm-anomaly-detection-src', '', d)} \ + ${@bb.utils.contains('MACHINE_FEATURES', 'gpu', 'pdm-anomaly-detection-source', '', d)} \ " EXTRA_PACKAGES = "" diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb index 3169fd0a..d377f500 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb @@ -11,8 +11,8 @@ BARCODE_PKG = "" # ${@['','barcode-roi-source'][oe.utils.all_distro_features(d, 'opencv', True, False) and bb.utils.contains('MACHINE_FEATURES', 'dsp', True, False, d)]} \ #" -DUAL_CAMERA_PKG = "${@bb.utils.contains('MACHINE_FEATURES', 'gpu', 'dual-camera-demo-src', '', d)}" -IMAGE_GALLERY_PKG = "${@bb.utils.contains('MACHINE_FEATURES', 'gpu','image-gallery-src', '', d)}" +DUAL_CAMERA_PKG = "${@bb.utils.contains('MACHINE_FEATURES', 'gpu', 'dual-camera-demo-source', '', d)}" +IMAGE_GALLERY_PKG = "${@bb.utils.contains('MACHINE_FEATURES', 'gpu','image-gallery-source', '', d)}" MULTIMEDIA = "" From patchwork Tue Sep 13 04:02:46 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 12713 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 CF79CC6FD26 for ; Tue, 13 Sep 2022 04:02:56 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.861.1663041771164233483 for ; Mon, 12 Sep 2022 21:02:51 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (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 B046740D73 for ; Tue, 13 Sep 2022 04:02:49 +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 8k00X_gcrR4U for ; Tue, 13 Sep 2022 04:02:49 +0000 (UTC) Received: from mail.denix.org (pool-100-15-80-88.washdc.fios.verizon.net [100.15.80.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id A197940D98 for ; Tue, 13 Sep 2022 04:02:48 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 4331C1749C8 for ; Tue, 13 Sep 2022 00:02:47 -0400 (EDT) From: Denys Dmytriyenko To: meta-arago@lists.yoctoproject.org Subject: [master/kirkstone][PATCH 52/52] all: fix up more bashisms Date: Tue, 13 Sep 2022 04:02:46 +0000 Message-Id: <20220913040246.2365077-53-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220913040246.2365077-1-denis@denix.org> References: <20220913040246.2365077-1-denis@denix.org> MIME-Version: 1.0 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, 13 Sep 2022 04:02:56 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14028 From: Denys Dmytriyenko Fix up additional bashisms thoughout the code. This is far from being complete - there are plenty of bashisms left in tisdk-bundle and manifest generation code, but at least the bundle can be built now. Signed-off-by: Denys Dmytriyenko --- .../classes/tisdk-bundle.bbclass | 6 ++--- .../recipes-core/images/arago-image.inc | 1 + .../ti-tisdk-makefile_1.0.bb | 2 +- .../recipes-core/meta/meta-toolchain-arago.bb | 22 +++++++++---------- 4 files changed, 16 insertions(+), 15 deletions(-) diff --git a/meta-arago-distro/classes/tisdk-bundle.bbclass b/meta-arago-distro/classes/tisdk-bundle.bbclass index 6a0b4eca..b92ca0c0 100644 --- a/meta-arago-distro/classes/tisdk-bundle.bbclass +++ b/meta-arago-distro/classes/tisdk-bundle.bbclass @@ -500,7 +500,7 @@ generate_sw_manifest_table() { return 1 fi - if [ "$gplv3_only" == "" ] + if [ "$gplv3_only" = "" ] then # The second parameter was not passed so set to false gplv3_only="false" @@ -633,7 +633,7 @@ EOF esac done - if [ "$extra_files" == "1" ] + if [ "$extra_files" = "1" ] then source="$source""
Files from:
https://git.yoctoproject.org/meta-arago
https://git.yoctoproject.org/meta-ti" fi @@ -662,7 +662,7 @@ echo " " >> ${SW_MANIFEST_FILE} cat >> ${SW_MANIFEST_TEXT} << EOF -| ${package} | ${version} | ${license//\|/or} | ${delivered_as} | ${modified} | ${location} | ${source} +| ${package} | ${version} | ${license} | ${delivered_as} | ${modified} | ${location} | ${source} EOF done diff --git a/meta-arago-distro/recipes-core/images/arago-image.inc b/meta-arago-distro/recipes-core/images/arago-image.inc index 73c49ce4..0bb3634b 100644 --- a/meta-arago-distro/recipes-core/images/arago-image.inc +++ b/meta-arago-distro/recipes-core/images/arago-image.inc @@ -22,6 +22,7 @@ IMAGE_LINGUAS = "" TOOLCHAIN_HOST_TASK += "nativesdk-buildtools-perl-dummy" SDK_PACKAGE_ARCHS += "buildtools-dummy-${SDKPKGSUFFIX}" +# FIXME: remove bashisms from this function (currently disabled) make_bootfiles_symlinks_relative() { for f in "${IMAGE_ROOTFS}/boot"/* do diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb index 85b99bf2..b991351f 100644 --- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb +++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb @@ -267,7 +267,7 @@ do_install () { cat ${D}/Makefile | grep "__DTB_DEPEND__" > /dev/null - if [ "$?" == "0" ] + if [ "$?" = "0" ] then sed -i -e "s|__KERNEL_DEVICETREE__|${KERNEL_DEVICETREE}|" ${D}/Makefile sed -i -e "s/__DTB_DEPEND__/linux-dtbs/" ${D}/Makefile diff --git a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb index b89f54c7..9dfa6c85 100644 --- a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb +++ b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb @@ -112,17 +112,17 @@ arago_sdk_fixup () { [ -e ${SDK_OUTPUT}/${SDKTARGETSYSROOT}/usr/lib/${TOOLCHAIN_SYS} ] || ln -s . ${SDK_OUTPUT}/${SDKTARGETSYSROOT}/usr/lib/${TOOLCHAIN_SYS} tcpath="${SDK_OUTPUT}/${SDKPATHNATIVE}${prefix_nativesdk}/${TOOLCHAIN_SYS}" mkdir -p $tcpath - pushd $tcpath - ln -s ${SDKTARGETSYSROOT}/include include - if [ "${TOOLCHAIN_BRAND}" != "arago" ]; then - mkdir -p libc - cd libc - fi - mkdir -p usr - ln -s ${SDKTARGETSYSROOT}/lib lib - ln -s ${SDKTARGETSYSROOT}/usr/lib usr/lib - ln -s ${SDKTARGETSYSROOT}/usr/include usr/include - popd + ( cd $tcpath; \ + ln -s ${SDKTARGETSYSROOT}/include include; \ + if [ "${TOOLCHAIN_BRAND}" != "arago" ]; then \ + mkdir -p libc; \ + cd libc; \ + fi; \ + mkdir -p usr; \ + ln -s ${SDKTARGETSYSROOT}/lib lib; \ + ln -s ${SDKTARGETSYSROOT}/usr/lib usr/lib; \ + ln -s ${SDKTARGETSYSROOT}/usr/include usr/include; \ + ) } fakeroot create_sdk_files() {