From patchwork Wed Dec 18 20:49:13 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denys Dmytriyenko X-Patchwork-Id: 54299 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 CE7D5E77188 for ; Wed, 18 Dec 2024 20:49:27 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.115499.1734554966432018039 for ; Wed, 18 Dec 2024 12:49:26 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: denix.org, ip: 64.68.198.64, mailfrom: denis@denix.org) Received: from localhost (localhost [127.0.0.1]) by mailout4.zoneedit.com (Postfix) with ESMTP id C6D6440CC1; Wed, 18 Dec 2024 20:49:25 +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 Crp-PenNdgCX; Wed, 18 Dec 2024 20:49:25 +0000 (UTC) Received: from mail.denix.org (pool-100-15-87-159.washdc.fios.verizon.net [100.15.87.159]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id B1BE540CBB; Wed, 18 Dec 2024 20:49:24 +0000 (UTC) Received: from thorin.denix (thorin.denix [192.168.30.9]) by mail.denix.org (Postfix) with ESMTP id 6ECD0164136; Wed, 18 Dec 2024 15:49:24 -0500 (EST) From: Denys Dmytriyenko To: meta-ti@lists.yoctoproject.org Cc: Denys Dmytriyenko Subject: [scarthgap][PATCH 03/13] meta-beagle: layer.conf: add lz4c to host tools list Date: Wed, 18 Dec 2024 15:49:13 -0500 Message-Id: <20241218204923.2601088-3-denis@denix.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20241218204923.2601088-1-denis@denix.org> References: <20241218204923.2601088-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 ; Wed, 18 Dec 2024 20:49:27 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/18133 From: Denys Dmytriyenko OE-Core master has switched from lz4c to lz4 host tool, but a corresponding change only appears in kernel 6.13. Since bb.org kernels 6.1 and 6.6 enable LZ4 compression by default, also add a legacy lz4c tool in the list. Signed-off-by: Denys Dmytriyenko --- Note: this change is not required for scarthgap for now, but it doesn't hurt and will ensure meta-beagle won't get broken if/when the corresponding change in OE-Core gets backported. meta-beagle/conf/layer.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-beagle/conf/layer.conf b/meta-beagle/conf/layer.conf index 0dac4946..d980df8e 100644 --- a/meta-beagle/conf/layer.conf +++ b/meta-beagle/conf/layer.conf @@ -13,3 +13,5 @@ LAYERSERIES_COMPAT_meta-beagle = "scarthgap" LAYERDEPENDS_meta-beagle = " \ meta-ti-bsp \ " + +HOSTTOOLS_NONFATAL += "lz4c"