From patchwork Wed Jul 22 14:02: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: 93227 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 E67CFC4453C for ; Wed, 22 Jul 2026 14:02:32 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.427.1784728945587032716 for ; Wed, 22 Jul 2026 07:02: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=dxga/OKd; 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 C78BD1595 for ; Wed, 22 Jul 2026 07:02: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 912013F59E for ; Wed, 22 Jul 2026 07:02:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1784728944; bh=w/Q9cJY5zH93OX9YzZg2Y9iNd9xUQXIi5F+/anAFlhQ=; h=From:To:Subject:Date:From; b=dxga/OKdkL6TK0/nOm0pJhy5Aiz6cnweAjLZEAMW8wHKl15+l+uo4NUBcxMWOpkC5 wKGF5C9/g+iXKakn+ClnYqTIU4xHK0/0RgmID889zREqzw9n9uy3+96L6kjvoo68Nc tWQD7CYsklbo/Fo5Vm7x1LuG4aMtgzgboD1lGric= From: Ross Burton To: meta-arm@lists.yoctoproject.org Subject: [PATCH v2 1/2] arm-toolchain/external-arm-toolchain: fix license Date: Wed, 22 Jul 2026 15:02:19 +0100 Message-ID: <20260722140220.1882878-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 14:02:32 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/7128 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" From patchwork Wed Jul 22 14:02:20 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 93226 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 D9F2BC44539 for ; Wed, 22 Jul 2026 14:02:32 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.418.1784728946496889907 for ; Wed, 22 Jul 2026 07:02:26 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@arm.com header.s=foss header.b=ZfWqvitq; 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 A3BBC1595 for ; Wed, 22 Jul 2026 07:02:21 -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 436EB3F59E for ; Wed, 22 Jul 2026 07:02:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1784728945; bh=gP+Wx7wQ6Wui/pUTnQQ9YFwv5hO8j6uzFCgjkxvvnEk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ZfWqvitq0+u8GUL9lnXoFjQ+XP8txSv5SRR7DASVJU67Qcvs4P4Jt/Ho/IfFav0xn GxYBwCYrdAa6t7/WZiF679DodZKo1o52fWc8oRmnSs7Y1amJHoWCmumHJxgFQtpZxm tK36pHDuYDl1GJGnTc2rEqGMVjpbJSTqcNJstU5M= From: Ross Burton To: meta-arm@lists.yoctoproject.org Subject: [PATCH v2 2/2] arm/fvp-common: refresh LICENSE statement Date: Wed, 22 Jul 2026 15:02:20 +0100 Message-ID: <20260722140220.1882878-2-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260722140220.1882878-1-ross.burton@arm.com> References: <20260722140220.1882878-1-ross.burton@arm.com> 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 14:02:32 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/7129 Extract the full list of licenses from third_party_licenses.txt. Signed-off-by: Ross Burton --- meta-arm/recipes-devtools/fvp/fvp-common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arm/recipes-devtools/fvp/fvp-common.inc b/meta-arm/recipes-devtools/fvp/fvp-common.inc index 5059985563..7f7d4ef512 100644 --- a/meta-arm/recipes-devtools/fvp/fvp-common.inc +++ b/meta-arm/recipes-devtools/fvp/fvp-common.inc @@ -1,7 +1,7 @@ HOMEPAGE = "https://developer.arm.com/tools-and-software/simulation-models/fixed-virtual-platforms" LICENSE_FLAGS = "Arm-FVP-EULA" -LICENSE = "Apache-2.0 AND BSD-3-Clause AND GPL-3.0-or-later WITH GCC-exception-3.1 AND LGPL-2.0-or-later AND MIT AND NCSA AND Python-2.0 AND Zlib AND LicenseRef-Proprietary" +LICENSE = "0BSD AND Apache-2.0 AND Apache-2.0 WITH LLVM-exception AND BSD-3-Clause AND BSL-1.0 AND bzip2-1.0.6 AND GPL-3.0-or-later WITH GCC-exception-3.1 AND IJG AND LGPL-2.1-or-later AND MIT AND MIT WITH fmt-exception AND Python-2.0 AND Unlicense AND Zlib AND LicenseRef-Proprietary" # FVP has an End User License Agreement. Add Arm-FVP-EULA to # LICENSE_FLAGS_ACCEPTED if the EULA has been accepted, so it can