From patchwork Sat Mar 19 12:32:59 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5524 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 CA8DEC43219 for ; Sat, 19 Mar 2022 12:33:22 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web12.6602.1647693201875376132 for ; Sat, 19 Mar 2022 05:33:22 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=uX41nxR3; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: nm@ti.com) Received: from fllv0034.itg.ti.com ([10.64.40.246]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXGZr061148; Sat, 19 Mar 2022 07:33:16 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=4jrljuQDP7SzZ/W2ZAGzmSibFilUQaEFeGma69VRXZY=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=uX41nxR3LSLSM8qn4h2W4SZetqRA1mR1aHgcrp5Xo5EVJpjrX3NOijMYEV1nc9ObB xsPweda+9egl/WnVMrlZQsBiB9OgRy34naY2lUaKx05KEzt17Iv4/C7HPzwGFg4fuH S8fZPy/claeZstJds49ARN7XP7oRkPMRsBv2F8Zs= Received: from DLEE110.ent.ti.com (dlee110.ent.ti.com [157.170.170.21]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXGCC105933 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:16 -0500 Received: from DLEE111.ent.ti.com (157.170.170.22) by DLEE110.ent.ti.com (157.170.170.21) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:16 -0500 Received: from lelv0327.itg.ti.com (10.180.67.183) by DLEE111.ent.ti.com (157.170.170.22) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:16 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0327.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXGYj028913; Sat, 19 Mar 2022 07:33:16 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon , Denys Dmytriyenko Subject: [master/dunfell PATCH V4 01/12] Revert "tisdk-tiny-image: remove packagedata task breaking initramfs packaging" Date: Sat, 19 Mar 2022 07:32:59 -0500 Message-ID: <20220319123310.8546-2-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:22 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13685 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 --- Changes Since V3: None. V3: https://lore.kernel.org/all/20220318184045.11246-2-nm@ti.com/ 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 c0ef8f247ee7..28da0b60cc35 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 Sat Mar 19 12:33:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5521 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 70FBFC433F5 for ; Sat, 19 Mar 2022 12:33:21 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web08.6622.1647693200527048376 for ; Sat, 19 Mar 2022 05:33:20 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=x5pTP7hQ; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: nm@ti.com) Received: from lelv0266.itg.ti.com ([10.180.67.225]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHuu061152; Sat, 19 Mar 2022 07:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=3hNruXaITMzmkI9Pct1YSmPC/d4GdJTYDDXSRl3eimQ=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=x5pTP7hQq5rC94D8/SHB/01PCYqMf+Pq2xAFlklHZEf69EPRHbrcPWEyevQLJ0xwt uopwFf/aq+HbAidJ8yZQjoUnmO9bGlKIaMgyboKgV/24ZPDKnklUDxtnL5TiKr9mml Tv0tQjkdIWImKerfNKwDUdQgV4HTUeseT0XNL8p0= Received: from DFLE113.ent.ti.com (dfle113.ent.ti.com [10.64.6.34]) by lelv0266.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXHMl029028 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:17 -0500 Received: from DFLE104.ent.ti.com (10.64.6.25) by DFLE113.ent.ti.com (10.64.6.34) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:16 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) by DFLE104.ent.ti.com (10.64.6.25) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:16 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXGk2016359; Sat, 19 Mar 2022 07:33:16 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon Subject: [master/dunfell PATCH V4 02/12] tisdk-tiny-image: Split common components into include file Date: Sat, 19 Mar 2022 07:33:00 -0500 Message-ID: <20220319123310.8546-3-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:21 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13680 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 --- Changes Since V3: None. V3: https://lore.kernel.org/all/20220318184045.11246-3-nm@ti.com/ .../{tisdk-tiny-image.bb => arago-tiny-image.inc} | 7 ------- .../recipes-core/images/tisdk-tiny-image.bb | 11 +++-------- 2 files changed, 3 insertions(+), 15 deletions(-) copy meta-arago-distro/recipes-core/images/{tisdk-tiny-image.bb => arago-tiny-image.inc} (50%) diff --git a/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb b/meta-arago-distro/recipes-core/images/arago-tiny-image.inc similarity index 50% copy from meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb copy to meta-arago-distro/recipes-core/images/arago-tiny-image.inc index 28da0b60cc35..79c8f6075911 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-tiny-image.bb +++ b/meta-arago-distro/recipes-core/images/arago-tiny-image.inc @@ -4,13 +4,6 @@ require arago-image.inc IMAGE_FEATURES_remove = "package-management splash" -IMAGE_FSTYPES += "cpio cpio.xz" - -ARAGO_TINY_IMAGE_EXTRA_INSTALL ?= "" - IMAGE_INSTALL = " \ packagegroup-arago-sysvinit-boot \ - ${ARAGO_TINY_IMAGE_EXTRA_INSTALL} \ " - -export IMAGE_BASENAME = "tisdk-tiny-image" 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 28da0b60cc35..85ae3728e86e 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,10 @@ -ARAGO_SYSVINIT = "1" - -require arago-image.inc +ARAGO_TINY_IMAGE_EXTRA_INSTALL ?= "" -IMAGE_FEATURES_remove = "package-management splash" +require arago-tiny-image.inc 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 Sat Mar 19 12:33:01 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5523 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 BD47CC4332F for ; Sat, 19 Mar 2022 12:33:22 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web10.6590.1647693200526339042 for ; Sat, 19 Mar 2022 05:33:20 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=f+W5mZZR; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: nm@ti.com) Received: from fllv0034.itg.ti.com ([10.64.40.246]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHtD061160; Sat, 19 Mar 2022 07:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=fP7RJ6aK+JbhqyYS89d/uII6YiAGjtkzNm4lzqj40t4=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=f+W5mZZRDDYkjc3aU77bABbm6mwR6tLLA9WsvhxSvcNAA+fHY3+Sy8qexoiZadnGY 00kRzYxeCgf/nBgb04hW8jMrN106pN6RZn+8fvrgfXhT7jKLmF9aHhuchyUCB9JwBt 7sxwv3w/pdAcr21CU++BjFckG1Je0/9Coa7ThzOw= Received: from DLEE103.ent.ti.com (dlee103.ent.ti.com [157.170.170.33]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXHlK105945 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:17 -0500 Received: from DLEE102.ent.ti.com (157.170.170.32) by DLEE103.ent.ti.com (157.170.170.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:16 -0500 Received: from fllv0039.itg.ti.com (10.64.41.19) by DLEE102.ent.ti.com (157.170.170.32) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:16 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0039.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXG6t105380; Sat, 19 Mar 2022 07:33:16 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon Subject: [master/dunfell PATCH V4 03/12] tisdk-tiny-image: Add some usability notes Date: Sat, 19 Mar 2022 07:33:01 -0500 Message-ID: <20220319123310.8546-4-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:22 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13678 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 --- Changes Since V3: None. V3: https://lore.kernel.org/all/20220318184045.11246-4-nm@ti.com/ .../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 85ae3728e86e..210bc32444f9 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 Sat Mar 19 12:33:02 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5530 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 188DFC433F5 for ; Sat, 19 Mar 2022 12:33:24 +0000 (UTC) Received: from fllv0016.ext.ti.com (fllv0016.ext.ti.com [198.47.19.142]) by mx.groups.io with SMTP id smtpd.web12.6603.1647693202867627515 for ; Sat, 19 Mar 2022 05:33:23 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=ipiEFiSy; spf=pass (domain: ti.com, ip: 198.47.19.142, mailfrom: nm@ti.com) Received: from fllv0034.itg.ti.com ([10.64.40.246]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHqm096584; Sat, 19 Mar 2022 07:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=bczirB+Pv8/EloKt3KSIHuSQzLfvd56q96lUubnwAY8=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=ipiEFiSyM0WfU/IIDOKj9tvamshMI+PhFiC71ng1NIoxze1Z9qDfr2FUwBVpEmP3H MDcnkMfg9Ei6G5yVwtsuPsXM3IdqtWGyH5asAnMdK61yP/ualoTB+g3xILZpgyYFtW 6tKUaVXHkIWtzWWGgENSSh3LdrJDnzLaqfbevEXA= Received: from DLEE112.ent.ti.com (dlee112.ent.ti.com [157.170.170.23]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXH2e105939 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:17 -0500 Received: from DLEE108.ent.ti.com (157.170.170.38) by DLEE112.ent.ti.com (157.170.170.23) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:16 -0500 Received: from fllv0040.itg.ti.com (10.64.41.20) by DLEE108.ent.ti.com (157.170.170.38) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:16 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0040.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXGP2115893; Sat, 19 Mar 2022 07:33:16 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon Subject: [master/dunfell PATCH V4 04/12] tisdk-base-image: Reformat documentation and clarify usage Date: Sat, 19 Mar 2022 07:33:02 -0500 Message-ID: <20220319123310.8546-5-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:24 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13686 Reformat the documentation to indicate the summary and description in a standardized manner. Signed-off-by: Nishanth Menon --- Changes Since V3: None. V3: https://lore.kernel.org/all/20220318184045.11246-5-nm@ti.com/ 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 76668831354f..8698816df52d 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 Sat Mar 19 12:33:03 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5525 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 DFE41C43217 for ; Sat, 19 Mar 2022 12:33:22 +0000 (UTC) Received: from lelv0143.ext.ti.com (lelv0143.ext.ti.com [198.47.23.248]) by mx.groups.io with SMTP id smtpd.web11.6564.1647693200787425880 for ; Sat, 19 Mar 2022 05:33:22 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=Ap9W3ZXz; spf=pass (domain: ti.com, ip: 198.47.23.248, mailfrom: nm@ti.com) Received: from fllv0034.itg.ti.com ([10.64.40.246]) by lelv0143.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHSE070629; Sat, 19 Mar 2022 07:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=Mri701ktji2FhFXfUDeSUZP9JCQu/607fthPCgrAITg=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=Ap9W3ZXzFUtVmfNUQlqKhmf3MIenTg82FvIvRzblsx7CRHsxSMmYReck95th/o/gL HmYUsdkOCxgheiriSpE/KUHhWBr4VxNsxQJKL7C0V72JtptCCDUdPuJpxByia9wnCA 9Lm/iTWu2/vbOJfuZRO0EzzYJTZMMPsnRG/NuYdE= Received: from DLEE109.ent.ti.com (dlee109.ent.ti.com [157.170.170.41]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXH5s105948 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:17 -0500 Received: from DLEE105.ent.ti.com (157.170.170.35) by DLEE109.ent.ti.com (157.170.170.41) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:16 -0500 Received: from lelv0327.itg.ti.com (10.180.67.183) by DLEE105.ent.ti.com (157.170.170.35) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:16 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0327.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXGN0028916; Sat, 19 Mar 2022 07:33:16 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon Subject: [master/dunfell PATCH V4 05/12] tisdk-default-image: Reformat documentation and clarify usage Date: Sat, 19 Mar 2022 07:33:03 -0500 Message-ID: <20220319123310.8546-6-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:22 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13684 Reformat the documentation to indicate the summary and description in a standardized manner. Signed-off-by: Nishanth Menon --- Changes Since V3: None. V3: https://lore.kernel.org/all/20220318184045.11246-6-nm@ti.com/ 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 152f8572afcb..a84e752c0402 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 Sat Mar 19 12:33:04 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5522 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 B4255C433FE for ; Sat, 19 Mar 2022 12:33:22 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web12.6600.1647693200527581680 for ; Sat, 19 Mar 2022 05:33:20 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=nm01sZ17; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: nm@ti.com) Received: from fllv0035.itg.ti.com ([10.64.41.0]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHxb061156; Sat, 19 Mar 2022 07:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=+KjptfV6KeIqCbAPJCV57kBfCMyxegE24Ji2n069jHc=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=nm01sZ176Y9MzTPsuM4Mx5N7ato4NQ9mRj3zY/ydd+tr+oNxzagngnZbWFbEm77cI SOlSxkw5PnzkTfDtZc5Ve1qCezgIW42Ta5UdNPYRPDEM7DAm9UgCeCtfOL8aGdfAba D6+CsLDIhK+Bh2nWqchnzNveRqYdMtNd8wdmnj58= Received: from DFLE108.ent.ti.com (dfle108.ent.ti.com [10.64.6.29]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXHHO075118 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:17 -0500 Received: from DFLE112.ent.ti.com (10.64.6.33) by DFLE108.ent.ti.com (10.64.6.29) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:17 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) by DFLE112.ent.ti.com (10.64.6.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:17 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXGXI016373; Sat, 19 Mar 2022 07:33:16 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon Subject: [master/dunfell PATCH V4 06/12] tisdk-thinlinux-image: Reformat documentation Date: Sat, 19 Mar 2022 07:33:04 -0500 Message-ID: <20220319123310.8546-7-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:22 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13679 Reformat the documentation to indicate the summary and description in a standardized manner. Signed-off-by: Nishanth Menon --- Changes Since V3: None. V3: https://lore.kernel.org/all/20220318184045.11246-7-nm@ti.com/ .../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 aa732df6b509..dc073d72d063 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 Sat Mar 19 12:33:05 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5520 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 6504DC433EF for ; Sat, 19 Mar 2022 12:33:21 +0000 (UTC) Received: from lelv0143.ext.ti.com (lelv0143.ext.ti.com [198.47.23.248]) by mx.groups.io with SMTP id smtpd.web08.6623.1647693200783605902 for ; Sat, 19 Mar 2022 05:33:21 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=AQrLY34g; spf=pass (domain: ti.com, ip: 198.47.23.248, mailfrom: nm@ti.com) Received: from fllv0034.itg.ti.com ([10.64.40.246]) by lelv0143.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHTC070641; Sat, 19 Mar 2022 07:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=6HxezNTKoU0rMnt9BiQRu6Qpwz3X8kG015zb8bIvLXc=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=AQrLY34gA/xcNq4bi7iJw4RxzCAZrOyR/HLHKmt5tYD56d+zaUzceg8AcYkCGFFSI +UfWyvnhy2lMcQEcpPtfT+5OuHz2GunKjoI9BAtZUaBOQGjAPZvlG/kWjMznCv2bv2 HwIsP4jxPuzUIG5RKg/RxdiBPOHc+LJTw5mMoDJ8= Received: from DLEE111.ent.ti.com (dlee111.ent.ti.com [157.170.170.22]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXHiC105951 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:17 -0500 Received: from DLEE109.ent.ti.com (157.170.170.41) by DLEE111.ent.ti.com (157.170.170.22) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:17 -0500 Received: from fllv0039.itg.ti.com (10.64.41.19) by DLEE109.ent.ti.com (157.170.170.41) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:17 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0039.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHbG105396; Sat, 19 Mar 2022 07:33:17 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon Subject: [master/dunfell PATCH V4 07/12] tisdk-core-bundle: Add documentation to clarify usage Date: Sat, 19 Mar 2022 07:33:05 -0500 Message-ID: <20220319123310.8546-8-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:21 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13681 Add documentation to the core-bundle to explain the usage and intent of the build configuration. Signed-off-by: Nishanth Menon --- Changes Since V3: None. V3: https://lore.kernel.org/all/20220318184045.11246-8-nm@ti.com/ 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 253bfbb68657..0892a8a62d57 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 Sat Mar 19 12:33:06 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5528 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 E346EC4321E for ; Sat, 19 Mar 2022 12:33:22 +0000 (UTC) Received: from lelv0143.ext.ti.com (lelv0143.ext.ti.com [198.47.23.248]) by mx.groups.io with SMTP id smtpd.web12.6601.1647693200827370398 for ; Sat, 19 Mar 2022 05:33:22 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=BBOggxLC; spf=pass (domain: ti.com, ip: 198.47.23.248, mailfrom: nm@ti.com) Received: from lelv0265.itg.ti.com ([10.180.67.224]) by lelv0143.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHkG070635; Sat, 19 Mar 2022 07:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=SiPkKx4TQLxY41Cv876Sc3dKM9j3wLkFlVMaHYmF5Yo=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=BBOggxLCih/SUutRrkU5WktUT6v5UTeKkCNppGSox+vVX9HvHEecH/ZJNTsAGBDSI 96MIL1xa8kcgrHgwZ14WBNdEwvOwxzkYWqasTeDr2P3L+cSF3DfHBlwFkj1XqKI5ni +DegYZr0mpdxlczZcXTyc0SagDOTFNq2b8Ir7Jo8= Received: from DFLE115.ent.ti.com (dfle115.ent.ti.com [10.64.6.36]) by lelv0265.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXHin009997 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:17 -0500 Received: from DFLE113.ent.ti.com (10.64.6.34) by DFLE115.ent.ti.com (10.64.6.36) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:17 -0500 Received: from fllv0040.itg.ti.com (10.64.41.20) by DFLE113.ent.ti.com (10.64.6.34) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:17 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0040.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXH6V115899; Sat, 19 Mar 2022 07:33:17 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon Subject: [master/dunfell PATCH V4 08/12] packagegroups: Add a new bootstrap package group Date: Sat, 19 Mar 2022 07:33:06 -0500 Message-ID: <20220319123310.8546-9-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:22 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13683 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 --- Changes Since V3: None. V3: https://lore.kernel.org/all/20220318184045.11246-9-nm@ti.com/ .../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 000000000000..9d961c282c5d --- /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 Sat Mar 19 12:33:07 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5527 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 113D6C433EF for ; Sat, 19 Mar 2022 12:33:23 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web11.6563.1647693200759343916 for ; Sat, 19 Mar 2022 05:33:22 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=UwEuuMye; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: nm@ti.com) Received: from lelv0265.itg.ti.com ([10.180.67.224]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXH8v061164; Sat, 19 Mar 2022 07:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=JKk/ZIh/29f4dxHnu0VHU0fcoeztfEXS9DSbsjs7/Qs=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=UwEuuMyeS+7rucQiejxOk0FmXqWANxWP3hAWme1WkIdjpWbi/cDS9YE2Le3St5jKp m4wbo4nI8ytvGQQOstyh3UvDm38PyNoq6ppqOaKUL8OeRWm+ohJQ7yJa6ZWtAJIoxG OsLr/5eNFgtqxZDRnVli0IOc2bKmZzkrcgFOGKyY= Received: from DFLE108.ent.ti.com (dfle108.ent.ti.com [10.64.6.29]) by lelv0265.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXHod010000 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:17 -0500 Received: from DFLE114.ent.ti.com (10.64.6.35) by DFLE108.ent.ti.com (10.64.6.29) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:17 -0500 Received: from lelv0327.itg.ti.com (10.180.67.183) by DFLE114.ent.ti.com (10.64.6.35) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:17 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0327.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHwM028920; Sat, 19 Mar 2022 07:33:17 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon Subject: [master/dunfell PATCH V4 09/12] recipes-core: images: Add a basic bootstrap base image Date: Sat, 19 Mar 2022 07:33:07 -0500 Message-ID: <20220319123310.8546-10-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:23 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13682 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 --- Changes Since V3: None. V3: https://lore.kernel.org/all/20220318184045.11246-10-nm@ti.com/ .../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 000000000000..8b7f10c9f343 --- /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 Sat Mar 19 12:33:08 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5531 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 E2767C4332F for ; Sat, 19 Mar 2022 12:33:24 +0000 (UTC) Received: from fllv0015.ext.ti.com (fllv0015.ext.ti.com [198.47.19.141]) by mx.groups.io with SMTP id smtpd.web08.6624.1647693203883015520 for ; Sat, 19 Mar 2022 05:33:24 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=SHwfnu2u; spf=pass (domain: ti.com, ip: 198.47.19.141, mailfrom: nm@ti.com) Received: from fllv0035.itg.ti.com ([10.64.41.0]) by fllv0015.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXH33040646; Sat, 19 Mar 2022 07:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=M7uGswby+AHaEDPz5oeE/T7SGf+v+HhWteSmU6vjaoo=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=SHwfnu2ujffWovgQ3s2Z6RdcQhf8xTWhz8mLanW4qAl1DY3zs3hN2N6c3XdtR6BqI 71E44p7zpHCkM1PscCny7MWxMuoJJWWrjl35kAA00fyQcbbjclvnUQQnn0SBlyxufc 0KHwJX1bsqEFuiskj2kBKDRtoRfynKRpNCyI6+OU= Received: from DFLE105.ent.ti.com (dfle105.ent.ti.com [10.64.6.26]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXH84075130 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:17 -0500 Received: from DFLE102.ent.ti.com (10.64.6.23) by DFLE105.ent.ti.com (10.64.6.26) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:17 -0500 Received: from fllv0039.itg.ti.com (10.64.41.19) by DFLE102.ent.ti.com (10.64.6.23) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:17 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0039.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHB0105404; Sat, 19 Mar 2022 07:33:17 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon Subject: [master/dunfell PATCH V4 10/12] recipes-bsp: Create a bootstrap-initrd package Date: Sat, 19 Mar 2022 07:33:08 -0500 Message-ID: <20220319123310.8546-11-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:24 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13690 Lets create an bootstrap-initrd package that installs the cpio generated in the correct locations. Signed-off-by: Nishanth Menon --- Changes Since V3: None. V3: https://lore.kernel.org/all/20220318184045.11246-11-nm@ti.com/ .../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 000000000000..2a53efcd9062 --- /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 = "GPLv2" + +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 Sat Mar 19 12:33:09 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5526 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 DE702C4167B for ; Sat, 19 Mar 2022 12:33:23 +0000 (UTC) Received: from fllv0015.ext.ti.com (fllv0015.ext.ti.com [198.47.19.141]) by mx.groups.io with SMTP id smtpd.web09.6665.1647693203001760761 for ; Sat, 19 Mar 2022 05:33:23 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=l58eGEdS; spf=pass (domain: ti.com, ip: 198.47.19.141, mailfrom: nm@ti.com) Received: from lelv0265.itg.ti.com ([10.180.67.224]) by fllv0015.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHRT040655; Sat, 19 Mar 2022 07:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=e6KWBv1Ds3t5fEIL5GzroCtMAAYM60x3ANW3Bq9zcFk=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=l58eGEdSd4ypxWaDfxXVYNogcSnO+aApwTz0nDb6dXV5pwIw9sLKlTrfI/B51pQRF hCUQd81Pqx5gjcKSZAZJLtGvNUmj37mxWM2+m6D40h16Ki415Ohr31gkVD5t0vu9qP 3RxNSQFMbLtCvfwiQxmd5nKTYzlliFi1cVzdX+Hc= Received: from DLEE108.ent.ti.com (dlee108.ent.ti.com [157.170.170.38]) by lelv0265.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXHoq010011 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:17 -0500 Received: from DLEE106.ent.ti.com (157.170.170.36) by DLEE108.ent.ti.com (157.170.170.38) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:17 -0500 Received: from fllv0040.itg.ti.com (10.64.41.20) by DLEE106.ent.ti.com (157.170.170.36) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:17 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0040.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHOp115914; Sat, 19 Mar 2022 07:33:17 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon Subject: [master/dunfell PATCH V4 11/12] recipes-core: images: Introduce tisdk-bootstrap-image Date: Sat, 19 Mar 2022 07:33:09 -0500 Message-ID: <20220319123310.8546-12-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:23 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13688 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 --- Changes Since V3: * s/kernel/kernel-base/ again! V3: https://lore.kernel.org/all/20220318184045.11246-12-nm@ti.com/ .../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 000000000000..b41f09fb0ec7 --- /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 Sat Mar 19 12:33:10 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 5529 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 0795AC4167D for ; Sat, 19 Mar 2022 12:33:24 +0000 (UTC) Received: from fllv0015.ext.ti.com (fllv0015.ext.ti.com [198.47.19.141]) by mx.groups.io with SMTP id smtpd.web11.6565.1647693203003246358 for ; Sat, 19 Mar 2022 05:33:23 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=yzUC/lOD; spf=pass (domain: ti.com, ip: 198.47.19.141, mailfrom: nm@ti.com) Received: from lelv0265.itg.ti.com ([10.180.67.224]) by fllv0015.ext.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHo6040651; Sat, 19 Mar 2022 07:33:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1647693197; bh=wuVHIs/idwnyyW4bbCRNn8HWANhC5SdWC5U9JkZSU4Y=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=yzUC/lODI5Uzs5cCg0iuBcSHyPtgErKnwPpXD/0XGMoNDmUcoy4lbaiT7Pu3Cy9Nl QfSdvmlswEYU2TrzmFCnebS3vmjdbpTyig0IcXcDTuOccWxkBC/pII7nGxaNS69avt DbYltlj/3jw2rChoVspPJ3L5tlN+43X8jDGW2ECA= Received: from DLEE113.ent.ti.com (dlee113.ent.ti.com [157.170.170.24]) by lelv0265.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 22JCXHP7010008 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Sat, 19 Mar 2022 07:33:17 -0500 Received: from DLEE101.ent.ti.com (157.170.170.31) by DLEE113.ent.ti.com (157.170.170.24) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Sat, 19 Mar 2022 07:33:17 -0500 Received: from lelv0327.itg.ti.com (10.180.67.183) by DLEE101.ent.ti.com (157.170.170.31) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Sat, 19 Mar 2022 07:33:17 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0327.itg.ti.com (8.15.2/8.15.2) with ESMTP id 22JCXHlj028924; Sat, 19 Mar 2022 07:33:17 -0500 From: Nishanth Menon To: , CC: , , , , , , , , Nishanth Menon Subject: [master/dunfell PATCH V4 12/12] images: Build tisdk-bootstrap-image with tisdk-core-bundle Date: Sat, 19 Mar 2022 07:33:10 -0500 Message-ID: <20220319123310.8546-13-nm@ti.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220319123310.8546-1-nm@ti.com> References: <20220319123310.8546-1-nm@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 19 Mar 2022 12:33:24 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13687 Add tisdk-bootstrap-image to the list of TARGET_IMAGES for tisdk-core-bundle. Signed-off-by: Nishanth Menon --- Changes Since V3: None. V3: https://lore.kernel.org/all/20220318184045.11246-13-nm@ti.com/ 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 5ce688ef24b7..db73abd27fc2 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc +++ b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc @@ -32,7 +32,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" # dra71 lcard requires an initramfs with modules for NFS boot TARGET_IMAGES_append_dra7xx-evm = " netboot-initrd"