From patchwork Wed Aug 5 12:14:28 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Martin Herren X-Patchwork-Id: 94614 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 387BFC55174 for ; Wed, 5 Aug 2026 12:14:41 +0000 (UTC) Received: from mail-4323.protonmail.ch (mail-4323.protonmail.ch [185.70.43.23]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.38892.1785932074462579689 for ; Wed, 05 Aug 2026 05:14:34 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@on-the-web.ch header.s=protonmail2 header.b=fS1Z+BGT; spf=pass (domain: on-the-web.ch, ip: 185.70.43.23, mailfrom: sputnik@on-the-web.ch) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=on-the-web.ch; s=protonmail2; t=1785932072; x=1786191272; bh=sHSIfk2xMfVCZHcbY7KUBPNFqDccHbsINSRyQWp1IPE=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=fS1Z+BGTafEa/NYktwNrNcv1VmyZQaKOgrULp5HN4lWOtpSbmCQ8JZQyl6+rAgluo 1rnTVsdjQZ17rEKOCeZjwDZmTyOhQSDS/Ikd/7EA+/N4MR7nDB8zsmT4vTP73jmnPk Has84/DbPoCwJV4BAUT5m8VXrfWDX5aNhyB73p0OUPJevIZd6YzTVZEPcBWclN6mrr RA/ZN2lKsph8lPn4TkYB/TpQ6zA5sqwVGexIj87gQmN8eQ3Kj9ONJsCCrzPVSL1q54 mfJW/5ux7q1r4Ngmg7hasETK4yKQOeq6TskLdYolwd5drfqd3Gb3qqXapIR8tMOgiH vHGfuHJl3v7Ug== Date: Wed, 05 Aug 2026 12:14:28 +0000 To: yocto-patches@lists.yoctoproject.org From: sputnik@on-the-web.ch Cc: Trevor Woerner , Martin Herren Subject: [meta-rockchip][PATCH 3/3] bsp: rkbin: rk3308-rkbin: replace deprecated CLOSED license with a LicenseRef Message-ID: <20260805121327.3946788-4-sputnik@on-the-web.ch> In-Reply-To: <20260805121327.3946788-1-sputnik@on-the-web.ch> References: <20260805121327.3946788-1-sputnik@on-the-web.ch> Feedback-ID: 61562450:user:proton X-Pm-Message-ID: 12a65d639269b6c8c484a03545a837d3858434e7 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, 05 Aug 2026 12:14:41 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/yocto-patches/message/4634 From: Martin Herren OE-Core now deprecates `LICENSE = "CLOSED"` in favour of a LicenseRef backed by NO_GENERIC_LICENSE. This recipe pins an older rkbin revision whose tree ships no LICENSE file, which is probably why it historically used CLOSED as well as pointing its LIC_FILES_CHKSUM at the README. References: oe-core e9d424738d6f ("classes/conf/lib: Parse LICENSE as SPDX Expression") Signed-off-by: Martin Herren --- recipes-bsp/rkbin/rk3308-rkbin_git.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) SRCREV = "e65b97b511f1349156702db40694454c141d8fe2" diff --git a/recipes-bsp/rkbin/rk3308-rkbin_git.bb b/recipes-bsp/rkbin/rk3308-rkbin_git.bb index 7307e66..2ee173c 100644 --- a/recipes-bsp/rkbin/rk3308-rkbin_git.bb +++ b/recipes-bsp/rkbin/rk3308-rkbin_git.bb @@ -1,6 +1,7 @@ DESCRIPTION = "Rockchip Firmware and Tool Binaries" -LICENSE = "CLOSED" +LICENSE = "LicenseRef-rk3308-rkbin-CLOSED" LIC_FILES_CHKSUM:rk3308 = "file://README;md5=39cc9df955478b8df2 6158d489fdcc95" +NO_GENERIC_LICENSE[rk3308-rkbin-CLOSED] = "README" SRC_URI = "git://github.com/rockchip-linux/rkbin;protocol=https;branch=master"