From patchwork Fri Jul 28 00:20:28 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randolph Sapp X-Patchwork-Id: 28052 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 93D6AC04E69 for ; Fri, 28 Jul 2023 00:20:43 +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.22558.1690503636390920155 for ; Thu, 27 Jul 2023 17:20:36 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=CPqC8V46; spf=pass (domain: ti.com, ip: 198.47.23.248, mailfrom: rs@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 36S0KYmS120052; Thu, 27 Jul 2023 19:20:34 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1690503634; bh=rV0S+4DzZoWiWdsFtpCXZ0FWGSvtsZyWo7tncILy/Ak=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=CPqC8V46uowdjpJ+Yy85GrZTX/s5Fuh1sOY68EBA1K48o+XOAEWCjXpZcNf3ymFi3 fPuOZNp9WUOzafUZWKwxuFcWDyZvWze6lztQyWI01h82KkaToFtGRPVGbYLI+BEuah CdQz4ockzhTZ0iYm+/jHI8Z1pdJCCBdLxSiPZjFw= Received: from DFLE102.ent.ti.com (dfle102.ent.ti.com [10.64.6.23]) by lelv0265.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 36S0KYpD003084 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 27 Jul 2023 19:20:34 -0500 Received: from DFLE111.ent.ti.com (10.64.6.32) 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.2507.23; Thu, 27 Jul 2023 19:20:34 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) by DFLE111.ent.ti.com (10.64.6.32) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Thu, 27 Jul 2023 19:20:34 -0500 Received: from rs-desk.dhcp.ti.com (ileaxei01-snat.itg.ti.com [10.180.69.5]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 36S0KYfD025363; Thu, 27 Jul 2023 19:20:34 -0500 From: To: , CC: , , , Randolph Sapp Subject: [meta-arago][kirkstone/master][PATCH 1/5] packagegroup-arago-bootstrap: fix RDEPENDS notation Date: Thu, 27 Jul 2023 19:20:28 -0500 Message-ID: <20230728002032.853330-2-rs@ti.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230728002032.853330-1-rs@ti.com> References: <20230728002032.853330-1-rs@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 ; Fri, 28 Jul 2023 00:20:43 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14810 From: Randolph Sapp The RDEPENDS for this packagegroup was still using the legacy format so it was being evaluated as a do-nothing group. Enable it. Signed-off-by: Randolph Sapp Acked-by: Denys Dmytriyenko --- .../recipes-core/packagegroups/packagegroup-arago-bootstrap.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb index b0ec64b0..50f759be 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-bootstrap.bb @@ -47,6 +47,6 @@ UTILS:append:k3 = " \ k3conf \ " -RDEPENDS_${PN} = "\ +RDEPENDS:${PN} = "\ ${UTILS} \ " From patchwork Fri Jul 28 00:20:29 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randolph Sapp X-Patchwork-Id: 28054 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 8548CC0015E for ; Fri, 28 Jul 2023 00:20:43 +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.22488.1690503636783538920 for ; Thu, 27 Jul 2023 17:20:36 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=YpZFUQcn; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: rs@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 36S0KYqO025650; Thu, 27 Jul 2023 19:20:34 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1690503634; bh=6TvydyUMsXv1nd8m7key9tTnv+/Zm3sBJ6fHt6LyzO8=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=YpZFUQcnMiIN0PqV8kLSGGnusU93qbimEBiRtnhDPKOEzxL4kPZdKA9tpwRvKRFcg 1hHkF23wbnFcmgq/LzkFthF7DlBFyMr2kAWKSyAamr9DcRVaxigAA2+a2PbU/PMRq/ m3nHcBigNfwGkevb+FlIDInZBozIUoLzGA+/vvpU= Received: from DFLE101.ent.ti.com (dfle101.ent.ti.com [10.64.6.22]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 36S0KYdm081123 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 27 Jul 2023 19:20:34 -0500 Received: from DFLE106.ent.ti.com (10.64.6.27) by DFLE101.ent.ti.com (10.64.6.22) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Thu, 27 Jul 2023 19:20:34 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) by DFLE106.ent.ti.com (10.64.6.27) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Thu, 27 Jul 2023 19:20:34 -0500 Received: from rs-desk.dhcp.ti.com (ileaxei01-snat.itg.ti.com [10.180.69.5]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 36S0KYfE025363; Thu, 27 Jul 2023 19:20:34 -0500 From: To: , CC: , , , Randolph Sapp Subject: [meta-arago][kirkstone/master][PATCH 2/5] packagegroup-arago-base: edit the summary to describe current use Date: Thu, 27 Jul 2023 19:20:29 -0500 Message-ID: <20230728002032.853330-3-rs@ti.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230728002032.853330-1-rs@ti.com> References: <20230728002032.853330-1-rs@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 ; Fri, 28 Jul 2023 00:20:43 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14812 From: Randolph Sapp Edit the summary of this packagegroup to more accurately describe it's current use in this dependency web. Signed-off-by: Randolph Sapp Acked-by: Denys Dmytriyenko --- .../recipes-core/packagegroups/packagegroup-arago-base.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base.bb index ff32112a..d3c1997e 100644 --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base.bb +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base.bb @@ -1,4 +1,4 @@ -DESCRIPTION = "Basic task to get a device booting" +DESCRIPTION = "Base tools that are recommended for most images" LICENSE = "MIT" PR = "r9" From patchwork Fri Jul 28 00:20:30 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randolph Sapp X-Patchwork-Id: 28050 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 884BFC41513 for ; Fri, 28 Jul 2023 00:20:43 +0000 (UTC) Received: from fllv0016.ext.ti.com (fllv0016.ext.ti.com [198.47.19.142]) by mx.groups.io with SMTP id smtpd.web10.22487.1690503636168498639 for ; Thu, 27 Jul 2023 17:20:36 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=SDXWlztv; spf=pass (domain: ti.com, ip: 198.47.19.142, mailfrom: rs@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 36S0KYC3027741; Thu, 27 Jul 2023 19:20:34 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1690503634; bh=EvXyQfOejoW09MAUNo59vpoQOGusEVr/UJjMaMtFheA=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=SDXWlztvsogDsLH+Xv6uQnYTauej2bD6fG4Z4c0Q1rIGeb9lSDgn3B2nx755BLW1i WgHpNn+5GtudRTje32BaktDpbglGbi5I6ZJv6E47V7LIPQoGdOAS1Cd4tfgzsMkc1x xDpya5M1XECwGD3LJnE7OQkXz6PmD6yVHEmPi+UQ= Received: from DFLE105.ent.ti.com (dfle105.ent.ti.com [10.64.6.26]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 36S0KYWT081118 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 27 Jul 2023 19:20:34 -0500 Received: from DFLE112.ent.ti.com (10.64.6.33) 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.2507.23; Thu, 27 Jul 2023 19:20:34 -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.2507.23 via Frontend Transport; Thu, 27 Jul 2023 19:20:34 -0500 Received: from rs-desk.dhcp.ti.com (ileaxei01-snat.itg.ti.com [10.180.69.5]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 36S0KYfF025363; Thu, 27 Jul 2023 19:20:34 -0500 From: To: , CC: , , , Randolph Sapp Subject: [meta-arago][kirkstone/master][PATCH 3/5] irqbalance: remove append to install systemd script Date: Thu, 27 Jul 2023 19:20:30 -0500 Message-ID: <20230728002032.853330-4-rs@ti.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230728002032.853330-1-rs@ti.com> References: <20230728002032.853330-1-rs@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 ; Fri, 28 Jul 2023 00:20:43 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14808 From: Randolph Sapp The source recipe that this file appends to already has the corresponding logic to install both the systemd and sysvinit service and set them to load on start. No reason to override them. Signed-off-by: Randolph Sapp --- .../recipes-extended/irqbalance/irqbalance_git.bbappend | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/meta-arago-distro/recipes-extended/irqbalance/irqbalance_git.bbappend b/meta-arago-distro/recipes-extended/irqbalance/irqbalance_git.bbappend index ff504150..7c289fc1 100644 --- a/meta-arago-distro/recipes-extended/irqbalance/irqbalance_git.bbappend +++ b/meta-arago-distro/recipes-extended/irqbalance/irqbalance_git.bbappend @@ -1,8 +1,4 @@ SRCREV = "c24ed221e9e82faf1ad22de133c3c97a0117c5d7" -PV = "1.9.2" - -do_install:append () { - install -m 0644 ${S}/misc/irqbalance.service ${D}${systemd_unitdir}/system/irqbalanced.service -} +PV = "1.9.2+git${SRCPV}" PR:append = ".arago3" From patchwork Fri Jul 28 00:20:31 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randolph Sapp X-Patchwork-Id: 28051 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 86686C04A6A for ; Fri, 28 Jul 2023 00:20:43 +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.22561.1690503636922902846 for ; Thu, 27 Jul 2023 17:20:37 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=bhdM7YO/; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: rs@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 36S0KYQF025652; Thu, 27 Jul 2023 19:20:34 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1690503634; bh=75D6mru8juS/+On8oniJonsJTfhZdP8mEGZvuWSj/wI=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=bhdM7YO/skRcTV80yxAaYd3bh+Td6kC3tWixImZnHF9HPJKwbMarKr0xaAzAhmhPL +0fivheqFws4ihvqyGt/KXJaDx1bC7KLx5XYorlweu3V2i2anQcBHvxDe8pRP/J4Pr 6TV5OmMBRWXdbPkVLDrKqOaV6Gp51VAhQjBY/gq4= Received: from DLEE115.ent.ti.com (dlee115.ent.ti.com [157.170.170.26]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 36S0KY8d097814 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 27 Jul 2023 19:20:34 -0500 Received: from DLEE106.ent.ti.com (157.170.170.36) by DLEE115.ent.ti.com (157.170.170.26) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Thu, 27 Jul 2023 19:20:34 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) 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.2507.23 via Frontend Transport; Thu, 27 Jul 2023 19:20:34 -0500 Received: from rs-desk.dhcp.ti.com (ileaxei01-snat.itg.ti.com [10.180.69.5]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 36S0KYfG025363; Thu, 27 Jul 2023 19:20:34 -0500 From: To: , CC: , , , Randolph Sapp Subject: [meta-arago][kirkstone/master][PATCH 4/5] packagegroup-arago-boot: add a new group for all-around useful packages Date: Thu, 27 Jul 2023 19:20:31 -0500 Message-ID: <20230728002032.853330-5-rs@ti.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230728002032.853330-1-rs@ti.com> References: <20230728002032.853330-1-rs@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 ; Fri, 28 Jul 2023 00:20:43 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14813 From: Randolph Sapp Add a new package group for performance or QoL tools that all images should inherit and add the first example of a package that should belong here. Irqbalance is a good example. It helps reduce irq response delays on most if not all of our platforms and is only problematic for users attempting to reduce jitter specifically through the use of irq pinning, in which case it can be easily disabled. Signed-off-by: Randolph Sapp --- .../recipes-core/images/arago-image.inc | 1 + .../packagegroups/packagegroup-arago-boot.bb | 17 +++++++++++++++++ .../packagegroup-arago-tisdk-addons.bb | 1 - 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-boot.bb diff --git a/meta-arago-distro/recipes-core/images/arago-image.inc b/meta-arago-distro/recipes-core/images/arago-image.inc index d00c1f70..0421dca3 100644 --- a/meta-arago-distro/recipes-core/images/arago-image.inc +++ b/meta-arago-distro/recipes-core/images/arago-image.inc @@ -11,6 +11,7 @@ EXTRA_IMAGECMD:ext2.gz += "-i 4096" IMAGE_INSTALL = " \ packagegroup-core-boot \ + packagegroup-arago-boot \ ${VIRTUAL-RUNTIME_initramfs} \ ${CORE_IMAGE_EXTRA_INSTALL} \ " diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-boot.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-boot.bb new file mode 100644 index 00000000..c9b87a45 --- /dev/null +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-boot.bb @@ -0,0 +1,17 @@ +SUMMARY = "Tools or utilities that all images should inherit" +DESCRIPTION = "These are packages that lead to general performance or QoL improvements on our platforms that should be inherited by all images. The idea is to keep this group as small as possible moving forward for compatibility with things like the tisdk-tiny-image build target." +LICENSE = "MIT" +PR = "r0" + +PACKAGE_ARCH = "${MACHINE_ARCH}" + +inherit packagegroup + +# packages that lead to general performance improvements +PERFORMANCE_UTILS = " \ + irqbalance \ +" + +RDEPENDS:${PN} = "\ + ${PERFORMANCE_UTILS} \ +" 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 c678460d..a9b71fd1 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 @@ -50,7 +50,6 @@ UTILS:append:omap-a15 = " mmc-utils \ UTILS:append:k3 = " mmc-utils \ switch-config \ - irqbalance \ ti-rpmsg-char \ ti-rpmsg-char-examples \ statcol \ From patchwork Fri Jul 28 00:20:32 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randolph Sapp X-Patchwork-Id: 28053 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 93648C04A94 for ; Fri, 28 Jul 2023 00:20:43 +0000 (UTC) Received: from fllv0016.ext.ti.com (fllv0016.ext.ti.com [198.47.19.142]) by mx.groups.io with SMTP id smtpd.web11.22560.1690503636747996298 for ; Thu, 27 Jul 2023 17:20:36 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=ndM7d/uN; spf=pass (domain: ti.com, ip: 198.47.19.142, mailfrom: rs@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 36S0KYvh027745; Thu, 27 Jul 2023 19:20:34 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1690503635; bh=Doquf0me2kNvyyHhpz90nidA+6i3mi+itM7cDl+8vfg=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=ndM7d/uNVJW6aUUa+cVfoQ5UG34E/1Tl7VGX51B8rCeX3FXiFHcycQ3KW06pLHnU4 s6JjRyn3u58ZqmrYgAFdS410jj7aTHAv/CnZvkYD/ewONICE+jwrNnlNT4wlFpaXsh ZzpaJE1FVISFleHsC9RegXN1UPCDnoH2NQ70XVKM= Received: from DLEE106.ent.ti.com (dlee106.ent.ti.com [157.170.170.36]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 36S0KYjd081126 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 27 Jul 2023 19:20:34 -0500 Received: from DLEE108.ent.ti.com (157.170.170.38) 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.2507.23; Thu, 27 Jul 2023 19:20:34 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) 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.2507.23 via Frontend Transport; Thu, 27 Jul 2023 19:20:34 -0500 Received: from rs-desk.dhcp.ti.com (ileaxei01-snat.itg.ti.com [10.180.69.5]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 36S0KYfH025363; Thu, 27 Jul 2023 19:20:34 -0500 From: To: , CC: , , , Randolph Sapp Subject: [meta-arago][kirkstone/master][PATCH 5/5] arago-tiny-image: add packagegroup-arago-boot to IMAGE_INSTALL Date: Thu, 27 Jul 2023 19:20:32 -0500 Message-ID: <20230728002032.853330-6-rs@ti.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230728002032.853330-1-rs@ti.com> References: <20230728002032.853330-1-rs@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 ; Fri, 28 Jul 2023 00:20:43 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14811 From: Randolph Sapp This image install override is interesting. Perhaps we should move to the separate build target distro configs like pokey uses [1] to avoid configuration collisions while still allowing for some base image templating through include files like arago-image.inc [1] https://git.yoctoproject.org/poky/tree/meta-poky/conf/distro/poky-tiny.conf?h=kirkstone Signed-off-by: Randolph Sapp --- meta-arago-distro/recipes-core/images/arago-tiny-image.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-arago-distro/recipes-core/images/arago-tiny-image.inc b/meta-arago-distro/recipes-core/images/arago-tiny-image.inc index 242e763c..77ee9ea2 100644 --- a/meta-arago-distro/recipes-core/images/arago-tiny-image.inc +++ b/meta-arago-distro/recipes-core/images/arago-tiny-image.inc @@ -6,4 +6,5 @@ IMAGE_FEATURES:remove = "splash" IMAGE_INSTALL = " \ packagegroup-arago-sysvinit-boot \ + packagegroup-arago-boot \ "