From patchwork Wed Jul 22 09:28:19 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 93141 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 C025FC4453E for ; Wed, 22 Jul 2026 09:28:27 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.43908.1784712505156732617 for ; Wed, 22 Jul 2026 02:28:25 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@arm.com header.s=foss header.b=oCwn+LDg; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 50C841595 for ; Wed, 22 Jul 2026 02:28:20 -0700 (PDT) Received: from cesw-amp-gbt-1s-m12830-04.lab.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 31A113F86F for ; Wed, 22 Jul 2026 02:28:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1784712504; bh=w/Q9cJY5zH93OX9YzZg2Y9iNd9xUQXIi5F+/anAFlhQ=; h=From:To:Subject:Date:From; b=oCwn+LDgey3qwJPTfW+ofw9lX/9VlAHOcZJPxdzF4wD/bZf9MHX4dAiX/cR9E/7JX eP6kjDSAFIL3LxuDRlhXYO0pPdw9r7BTAPrTh7sAgoSACl05hSQKsrxRPWkJx7IyNt ObVm8MXNFZJaxSLPC2RSTGVpbUHcaVebxhx4H2T0= From: Ross Burton To: meta-arm@lists.yoctoproject.org Subject: [PATCH 1/2] arm-toolchain/external-arm-toolchain: fix license Date: Wed, 22 Jul 2026 10:28:19 +0100 Message-ID: <20260722092820.3452299-1-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 22 Jul 2026 09:28:27 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/7125 Part of the GCC license is -only, not -or-later. Thanks to Denys Dmytriyenko and Joshua Watt for their diligent review. Signed-off-by: Ross Burton --- .../external-arm-toolchain/gcc-aarch64-none-elf_15.3.rel1.bb | 2 +- .../external-arm-toolchain/gcc-arm-none-eabi_15.3.rel1.bb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_15.3.rel1.bb b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_15.3.rel1.bb index 05d6a9f952..7bca316daa 100644 --- a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_15.3.rel1.bb +++ b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-aarch64-none-elf_15.3.rel1.bb @@ -6,7 +6,7 @@ require arm-binary-toolchain.inc COMPATIBLE_HOST = "(x86_64|aarch64).*-linux" SUMMARY = "Arm GNU Toolchain - AArch64 bare-metal target (aarch64-none-elf)" -LICENSE = "GPL-3.0-or-later AND GPL-3.0-or-later WITH GCC-exception-3.1" +LICENSE = "GPL-3.0-only AND GPL-3.0-or-later WITH GCC-exception-3.1" LIC_FILES_CHKSUM:aarch64 = "file://share/doc/gcc/Copying.html;md5=90014a59d1783b37a10240d4d0002c6e" LIC_FILES_CHKSUM:x86-64 = "file://share/doc/gcc/Copying.html;md5=90014a59d1783b37a10240d4d0002c6e" diff --git a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi_15.3.rel1.bb b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi_15.3.rel1.bb index db7a5dffa2..53c29f5f56 100644 --- a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi_15.3.rel1.bb +++ b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi_15.3.rel1.bb @@ -6,7 +6,7 @@ require arm-binary-toolchain.inc COMPATIBLE_HOST = "(x86_64|aarch64).*-linux" SUMMARY = "Arm GNU Toolchain - AArch32 bare-metal target (arm-none-eabi)" -LICENSE = "GPL-3.0-or-later AND GPL-3.0-or-later WITH GCC-exception-3.1" +LICENSE = "GPL-3.0-only AND GPL-3.0-or-later WITH GCC-exception-3.1" LIC_FILES_CHKSUM:aarch64 = "file://share/doc/gcc/Copying.html;md5=90014a59d1783b37a10240d4d0002c6e" LIC_FILES_CHKSUM:x86-64 = "file://share/doc/gcc/Copying.html;md5=90014a59d1783b37a10240d4d0002c6e"