From patchwork Thu Aug 6 21:42: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: 94712 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 A0398C5AC67 for ; Thu, 6 Aug 2026 21:42:36 +0000 (UTC) Received: from mail-4317.protonmail.ch (mail-4317.protonmail.ch [185.70.43.17]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.30690.1786052554301691703 for ; Thu, 06 Aug 2026 14:42: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=dmsHti+C; spf=pass (domain: on-the-web.ch, ip: 185.70.43.17, mailfrom: sputnik@on-the-web.ch) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=on-the-web.ch; s=protonmail2; t=1786052552; x=1786311752; bh=AsTtVZyWmsF9YmDbZp0FX0gLbXr1EoMjpQBu0KSHTL0=; 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=dmsHti+C3Bc5+Wv8R67bxBZEeGfEcsdbiTKTVjJVYLKoozFj3XEIq0Bu7C6l9mBa0 p1mgNucN0toKbCljhlN48mY49GcSzwUkvCjOdCFQ4hmFqTLD1l50ACPUMZz07mHd9x 1WGYsAelonWVDp3eILDizX1mbCTuuVxFbfbzC5Sejd6VGh9ZNIrGKJANEGJX2UEJCQ ZI/wCFFzB1EjRt3nyL932Rhg0QeBKUp5k4y4iyx9v//vLrpZZBWZOEIpO/qOFMAhuj L4CArNZNM4208mQL9pp0xx1gDuOWwiVvcG43gJdRCt4e2GGbksZ+1ys5Yq5gYY7E+f 3JGqqdAfEnNEQ== Date: Thu, 06 Aug 2026 21:42:28 +0000 To: yocto-patches@lists.yoctoproject.org From: sputnik@on-the-web.ch Cc: Trevor Woerner , Martin Herren , Quentin Schulz Subject: [meta-rockchip][PATCH v2 3/3] bsp: rkbin: rk3308-rkbin: replace deprecated CLOSED license with a LicenseRef Message-ID: <20260806214149.714963-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: 0bf8bbca6c75a71fc54676b69367dfc5918d10c0 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 ; Thu, 06 Aug 2026 21:42:36 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/yocto-patches/message/4647 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") Reviewed-by: Quentin Schulz AI-Generated: Z.ai:GLM-5.2 OpenCode Go Signed-off-by: Martin Herren --- Changes in v2: - Added Reviewed-by tag - Added AI-Generated tag 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 = "Roc kchip Firmware and Tool Binaries" -LICENSE = "CLOSED" +LICENSE = "LicenseRef-rk3308-rkbin-CLOSED" LIC_FILES_CHKSUM:rk3308 = "file://README;md5=39cc9df955478b8df26158d489fdcc95" +NO_GENERIC_LICENSE[rk3308-rkbin-CLOSED] = "README" SRC_URI = "git://github.com/rockchip-linux/rkbin;protocol=https;branch=master"