From unknown Mon Jun 23 07:48:58 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#61454 <61454@debbugs.gnu.org> To: bug#61454 <61454@debbugs.gnu.org> Subject: Status: [PATCH 0/5] Expose upstream linux sources Reply-To: bug#61454 <61454@debbugs.gnu.org> Date: Mon, 23 Jun 2025 14:48:58 +0000 retitle 61454 [PATCH 0/5] Expose upstream linux sources reassign 61454 guix-patches submitter 61454 jlicht@fsfe.org severity 61454 normal tag 61454 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 12 10:40:06 2023 Received: (at submit) by debbugs.gnu.org; 12 Feb 2023 15:40:06 +0000 Received: from localhost ([127.0.0.1]:46451 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRESU-00085I-9x for submit@debbugs.gnu.org; Sun, 12 Feb 2023 10:40:06 -0500 Received: from lists.gnu.org ([209.51.188.17]:39726) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRESS-000859-Cd for submit@debbugs.gnu.org; Sun, 12 Feb 2023 10:40:04 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRESS-00020u-2x for guix-patches@gnu.org; Sun, 12 Feb 2023 10:40:04 -0500 Received: from mail1.fsfe.org ([217.69.89.151]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRESP-0003SH-I4 for guix-patches@gnu.org; Sun, 12 Feb 2023 10:40:03 -0500 From: jlicht@fsfe.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fsfe.org; s=2021100501; t=1676216396; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=6sfZ74beblWoek8OBZB+R+pJvoqmUAjhZy3MgwHf7C0=; b=fy4zUNDa6bnu0Cay3coX5nbh3bWgiiwbnV6BIoyxhKVl55tjJqxNuHbdReuF87Xc3hufbY 22bz5BjiZkL+SpLEExhQ0YZGqI+OHWSygS2b/SP9W3hsG2nKyKsO/KZ48M8yrQznI2bV7z 6uXOPhOmvCy66niu/k7BGKGDsS5JiVg= To: guix-patches@gnu.org Subject: [PATCH 0/5] Expose upstream linux sources Date: Sun, 12 Feb 2023 16:39:55 +0100 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.69.89.151; envelope-from=jlicht@fsfe.org; helo=mail1.fsfe.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Jelle Licht X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) From: Jelle Licht Hey guix, This patch series should not lead to any rebuilds. The aim is to expose the used linux upstream sources, for use by custom local packages or external channels. Two main concerns I still have: * Is this fundamentally going to be an issue with the FSDG? * This is the 'dumb' solution; alternatively, I was thinking of introducing a record to unify all the moving parts (the upstream sources, the deblob scripts) involved in building our linux-libre kernels. That bigger change is ideally something we achieve consensus on before writing some code. Jelle Licht (5): gnu: linux-libre 4.14: Expose upstream sources. gnu: linux-libre 4.19: Expose upstream sources. gnu: linux-libre 5.10: Expose upstream sources. gnu: linux-libre 5.15: Expose upstream sources. gnu: linux-libre 6.1: Expose upstream sources. gnu/packages/linux.scm | 47 ++++++++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 20 deletions(-) base-commit: fb9799ff5f1d90a443dc197535c48041ad6b3865 -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 12 10:42:20 2023 Received: (at 61454) by debbugs.gnu.org; 12 Feb 2023 15:42:20 +0000 Received: from localhost ([127.0.0.1]:46464 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pREUd-00089Q-O3 for submit@debbugs.gnu.org; Sun, 12 Feb 2023 10:42:20 -0500 Received: from mail1.fsfe.org ([217.69.89.151]:50054) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pREUb-000894-MV for 61454@debbugs.gnu.org; Sun, 12 Feb 2023 10:42:18 -0500 From: jlicht@fsfe.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fsfe.org; s=2021100501; t=1676216536; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=TKVe9epA83RgYzybVr7thDPj83ANMnaXfLRfesSeBGE=; b=hzqh79sB4Um1A3vK5VbF7n8bOv4vGh3kliOspo1H7DSYecNJ1TFmmJ8Nz0oH4fpiBLpvo1 zer7MWD2VJD9WxsNdAvlvm82fiWCv7/y/Kbzmy7qfZXo2AKbC6q9A8Vv8nqOHhlPhs2FQy kjyrPeZLaXFx6/hENrGIOVYS/8E8ZIA= To: 61454@debbugs.gnu.org Subject: [PATCH 1/5] gnu: linux-libre 4.14: Expose upstream sources. Date: Sun, 12 Feb 2023 16:42:11 +0100 Message-Id: <24c45f62246ac5c625052387373623ec0d51eb9b.1676213809.git.jlicht@fsfe.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61454 Cc: Jelle Licht X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) From: Jelle Licht * gnu/packages/linux.scm (linux-libre-4.14-pristine-source): Re-use extracted upstream sources from ... (linux-4.14-source): ... new variable. --- gnu/packages/linux.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 4130cdb4ed..b0e1f212fd 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -567,12 +567,13 @@ (define deblob-scripts-4.14 linux-libre-4.14-gnu-revision (base32 "02rxvr0gmxb3zfsyyzdmzgfq04gkdkv1cc38md0xfl0mxzdzdfyk") (base32 "00i91lx938nqlgy63hiricqd0fnbbf26vgya9c5lb7m1f4x324im"))) -(define-public linux-libre-4.14-pristine-source +(define-public linux-4.14-source (let ((version linux-libre-4.14-version) (hash (base32 "16lmhxqpbhyqmgmlyicjadzz3axhl5smfrr230x45ahkdghwsnx3"))) - (make-linux-libre-source version - (%upstream-linux-source version hash) - deblob-scripts-4.14))) + (%upstream-linux-source version hash))) +(define-public linux-libre-4.14-pristine-source + (let ((version linux-libre-4.14-version)) + (make-linux-libre-source version linux-4.14-source deblob-scripts-4.14))) (define %boot-logo-patch ;; Linux-Libre boot logo featuring Freedo and a gnu. -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 12 10:42:20 2023 Received: (at 61454) by debbugs.gnu.org; 12 Feb 2023 15:42:20 +0000 Received: from localhost ([127.0.0.1]:46467 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pREUe-00089S-32 for submit@debbugs.gnu.org; Sun, 12 Feb 2023 10:42:20 -0500 Received: from mail1.fsfe.org ([217.69.89.151]:50066) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pREUc-000895-Ai for 61454@debbugs.gnu.org; Sun, 12 Feb 2023 10:42:18 -0500 From: jlicht@fsfe.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fsfe.org; s=2021100501; t=1676216537; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Gszf/AaAoXdJlMl0ymFSEBbw1uKCZsj8lcXSs1qf/nM=; b=THpsOhK41uh2di6nxRAJR2RpCe4BtZxrWa15NsI3Rfd2Y7c2fz1nD44vJJbSPErZkBrDxO BlRcpef3G0kMpMd7WZLE0PIUc9jS8O1cnunLMIo1/NQnLE9g022PupcLWl9BitjeCNo8cL riJCK8BYLqOkKhKYE8NQkt2EiAzRQKQ= To: 61454@debbugs.gnu.org Subject: [PATCH 2/5] gnu: linux-libre 4.19: Expose upstream sources. Date: Sun, 12 Feb 2023 16:42:12 +0100 Message-Id: <04151ef04e5b75ae9a237dbd179b7a5d5f55dc75.1676213809.git.jlicht@fsfe.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61454 Cc: Jelle Licht X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) From: Jelle Licht * gnu/packages/linux.scm (linux-libre-4.19-pristine-source): Re-use extracted upstream sources from ... (linux-4.19-source): ... new variable. --- gnu/packages/linux.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index b0e1f212fd..ff59084ed2 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -552,12 +552,13 @@ (define deblob-scripts-4.19 linux-libre-4.19-gnu-revision (base32 "06pqv050bkii0hc2v7ymny5264w1bca8db0dp1pw9mfmjg865am5") (base32 "0g1yhzxm3ixfll6n630v7lddcyvf888sg114nimh0lkvzd180s99"))) -(define-public linux-libre-4.19-pristine-source +(define-public linux-4.19-source (let ((version linux-libre-4.19-version) (hash (base32 "1y8kyc48v8bsl53zc6dsy5xhazv0vyna98fycj181aypicvbk7s8"))) - (make-linux-libre-source version - (%upstream-linux-source version hash) - deblob-scripts-4.19))) + (%upstream-linux-source version hash))) +(define-public linux-libre-4.19-pristine-source + (let ((version linux-libre-4.19-version)) + (make-linux-libre-source version linux-4.19-source deblob-scripts-4.19))) (define-public linux-libre-4.14-version "4.14.305") (define-public linux-libre-4.14-gnu-revision "gnu1") -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 12 10:42:25 2023 Received: (at 61454) by debbugs.gnu.org; 12 Feb 2023 15:42:25 +0000 Received: from localhost ([127.0.0.1]:46470 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pREUi-00089t-MZ for submit@debbugs.gnu.org; Sun, 12 Feb 2023 10:42:24 -0500 Received: from mail1.fsfe.org ([217.69.89.151]:50068) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pREUc-00089H-W2 for 61454@debbugs.gnu.org; Sun, 12 Feb 2023 10:42:19 -0500 From: jlicht@fsfe.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fsfe.org; s=2021100501; t=1676216538; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/lPNbZHiKdJjMfAaRun1lu11/cyUaPYD4kpqJcGc6YM=; b=Axt/Yq15ssG+N/loqrHiApQX1G4OeoUCp9IGWSwQiSXljW69BT48OIJIBjPAk2G2rahAt6 9Mg0wpDovfUkPJARWH7unaRUNQl3ES4Ger7knwgxrTE0XRMfyPkUQPc1aLG3aap5JO9KTi F+djYRrbvFB4Z2x9hJhQPfsI+FXd2Fo= To: 61454@debbugs.gnu.org Subject: [PATCH 3/5] gnu: linux-libre 5.10: Expose upstream sources. Date: Sun, 12 Feb 2023 16:42:13 +0100 Message-Id: <376df4f7d7e926b2bc933ab3600a42e18210bb51.1676213809.git.jlicht@fsfe.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61454 Cc: Jelle Licht X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) From: Jelle Licht * gnu/packages/linux.scm (linux-libre-5.10-pristine-source): Re-use extracted upstream sources from ... (linux-5.10-source): ... new variable. --- gnu/packages/linux.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index ff59084ed2..0a5411f98a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -522,12 +522,13 @@ (define deblob-scripts-5.10 linux-libre-5.10-gnu-revision (base32 "0mw7qn77y9c6wrnw4rjvf75cpm1w6n1aqqhf8cnghcb97p2yxxrf") (base32 "0fk954nniva8a7s423fnfn2wz9j9jdhscc4pqyvwn0wlxxbjgyap"))) -(define-public linux-libre-5.10-pristine-source +(define-public linux-5.10-source (let ((version linux-libre-5.10-version) (hash (base32 "1iprbgwdgnylzw4dc8jgims54x8dkq070c9vs4642rp529wgj1yq"))) - (make-linux-libre-source version - (%upstream-linux-source version hash) - deblob-scripts-5.10))) + (%upstream-linux-source version hash))) +(define-public linux-libre-5.10-pristine-source + (let ((version linux-libre-5.10-version)) + (make-linux-libre-source version linux-5.10-source deblob-scripts-5.10))) (define-public linux-libre-5.4-version "5.4.231") (define-public linux-libre-5.4-gnu-revision "gnu1") -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 12 10:42:25 2023 Received: (at 61454) by debbugs.gnu.org; 12 Feb 2023 15:42:25 +0000 Received: from localhost ([127.0.0.1]:46472 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pREUj-00089w-0C for submit@debbugs.gnu.org; Sun, 12 Feb 2023 10:42:25 -0500 Received: from mail1.fsfe.org ([217.69.89.151]:50076) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pREUd-00089P-Qf for 61454@debbugs.gnu.org; Sun, 12 Feb 2023 10:42:20 -0500 From: jlicht@fsfe.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fsfe.org; s=2021100501; t=1676216539; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=sff6FDSEvPs5/WMsfX1kqqsyyxwAwrn1KxOEolQLhg0=; b=dUcy2mh52nSTdt8j0cHig2DDUMQvtCE5K5meJyZT8NgtCKEqd2W3SA1Q08BvyJEHIt2pzG 9InnRf4wNOwQPQKcLwlWVKX/etLjLGH/WQ1/SmanQaHn4ufFDoIUXeocE6GqSHpcdudk88 1TYvLPcSl6yFdKf6hQnLSVyByThNmLE= To: 61454@debbugs.gnu.org Subject: [PATCH 4/5] gnu: linux-libre 5.15: Expose upstream sources. Date: Sun, 12 Feb 2023 16:42:14 +0100 Message-Id: In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61454 Cc: Jelle Licht X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) From: Jelle Licht * gnu/packages/linux.scm (linux-libre-5.15-pristine-source): Re-use extracted upstream sources from ... (linux-5.15-source): ... new variable. --- gnu/packages/linux.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 0a5411f98a..a9d51c8f24 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -507,12 +507,13 @@ (define deblob-scripts-5.15 linux-libre-5.15-gnu-revision (base32 "0vj60bra81fmbx3lz924czbhxs4dmvd4d584g9mcs80b7c4q52kg") (base32 "1lwmax7078w5p6li1gf66m494xijy4bwa7nm5dlx0k09cfif9q2f"))) -(define-public linux-libre-5.15-pristine-source +(define-public linux-5.15-source (let ((version linux-libre-5.15-version) (hash (base32 "14ggwrvk9n2nvk38fp4g486k864knf3n9979mm51m8wrvd8h8hlz"))) - (make-linux-libre-source version - (%upstream-linux-source version hash) - deblob-scripts-5.15))) + (%upstream-linux-source version hash))) +(define-public linux-libre-5.15-pristine-source + (let ((version linux-libre-5.15-version)) + (make-linux-libre-source version linux-5.15-source deblob-scripts-5.15))) (define-public linux-libre-5.10-version "5.10.167") (define-public linux-libre-5.10-gnu-revision "gnu1") -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 12 10:42:25 2023 Received: (at 61454) by debbugs.gnu.org; 12 Feb 2023 15:42:25 +0000 Received: from localhost ([127.0.0.1]:46474 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pREUj-0008A3-BF for submit@debbugs.gnu.org; Sun, 12 Feb 2023 10:42:25 -0500 Received: from mail1.fsfe.org ([217.69.89.151]:50068) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pREUe-00089H-7f for 61454@debbugs.gnu.org; Sun, 12 Feb 2023 10:42:21 -0500 From: jlicht@fsfe.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fsfe.org; s=2021100501; t=1676216539; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=EFs1im2bZ8mhaJEJY54J/WlzCa1glClCcFQYOso4cgk=; b=atLqzpFgLg+etJW4/JbcoNvnwBXslFDAa1YOja/l5AsjoYNHiimd8ki2wDJmdqKeYN0eR4 KAtD0fvhPi0QfQuNzh9h2j9D8T2d4rP2fxjw456vCtqSOcMz0OCt6PSm5MxI9BobCyRhq9 HN3LBgaSeY2ae7tn/gTjSR8ZK6ARr7c= To: 61454@debbugs.gnu.org Subject: [PATCH 5/5] gnu: linux-libre 6.1: Expose upstream sources. Date: Sun, 12 Feb 2023 16:42:15 +0100 Message-Id: <0ab4a299434d8ec0d2e7b5f3c2f89a33c3a43a93.1676213809.git.jlicht@fsfe.org> In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61454 Cc: Jelle Licht X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) From: Jelle Licht * gnu/packages/linux.scm (linux-libre-6.1-pristine-source): Re-use extracted upstream sources from ... (linux-6.1-source): ... new variable. --- gnu/packages/linux.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index a9d51c8f24..27b11465d7 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -489,12 +489,15 @@ (define deblob-scripts-6.1 linux-libre-6.1-gnu-revision (base32 "0p1cg5khpp8xkfaqy0cnp1m273z3xiz0m97rkrkggz9gr2klrjym") (base32 "1g9xqc8ajs0g2yq9xizlgr7k47x75rk3y99yicky01fm13rvfvv3"))) -(define-public linux-libre-6.1-pristine-source + +(define-public linux-6.1-source (let ((version linux-libre-6.1-version) (hash (base32 "17fifhfh2jrvlhry696n428ldl5ag3g2km5l9hx8gx8wm6dr3qhb"))) - (make-linux-libre-source version - (%upstream-linux-source version hash) - deblob-scripts-6.1))) + (%upstream-linux-source version hash))) + +(define-public linux-libre-6.1-pristine-source + (let ((version linux-libre-6.1-version)) + (make-linux-libre-source version linux-6.1-source deblob-scripts-6.1))) ;; The "longterm" kernels — the older releases with long-term upstream support. ;; Here are the support timelines: -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 12 11:46:12 2023 Received: (at 61454) by debbugs.gnu.org; 12 Feb 2023 16:46:12 +0000 Received: from localhost ([127.0.0.1]:46519 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRFUR-0001NS-Rp for submit@debbugs.gnu.org; Sun, 12 Feb 2023 11:46:12 -0500 Received: from mail-ed1-f65.google.com ([209.85.208.65]:33752) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRFUP-0001NE-KB for 61454@debbugs.gnu.org; Sun, 12 Feb 2023 11:46:10 -0500 Received: by mail-ed1-f65.google.com with SMTP id p12so2846622edc.0 for <61454@debbugs.gnu.org>; Sun, 12 Feb 2023 08:46:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:user-agent:content-transfer-encoding:references :in-reply-to:date:to:from:subject:message-id:from:to:cc:subject:date :message-id:reply-to; bh=WXxt+D4XY35OthlSBAoKInlwCC26cXqwZyJmrIYCm2A=; b=kDHGW5OMGT3aScc0X1roYfxsiuhIpUmPDDGc8tXbM61ZR5btI4yXDpUa/MjGdBXmtb iKdgehPb7HV5eeUHxF6CWwEFCU2UY8gJ/waOazgGOZN7SGDG/FEMU6hMsLHQmJE0+Fds pCg6YRCiSPiXjWwa4QI/AH9mo2VgfYsOILSgJrmqlwGQ5Pnj8vPSoJ1ixmlpsqp3AUoi RtcbT1i2A4gpmIM5uVvKIS4xLkfwZSre2QctuNep5C8JrYBkZ0FVYaVOqplb9IJoy1sp Xk93oDwaWGt+e+HsJn6jFVrw3M9yZIC8xnWf3r+37qDzzCra2uEThA1RnxXW3tytKJM6 js8Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=mime-version:user-agent:content-transfer-encoding:references :in-reply-to:date:to:from:subject:message-id:x-gm-message-state:from :to:cc:subject:date:message-id:reply-to; bh=WXxt+D4XY35OthlSBAoKInlwCC26cXqwZyJmrIYCm2A=; b=kMT+WaSKcCahf1lPECDSd5ufHdmUF3TLHEnl0CQqkzZMfLhVz8pGl1KLwkWdEV0KZE FE7k9dl48Ekn/qHsQg+O7yzIXRygxzD1htgyTFxXEj2pIniEnv9CmNH5WFr3wuWCZMzv pF32DxQS/4rTO6cKiMGXRiZrOyErS4kfkXrg2eSw9++UHA+dJ6eSR0fqkY+tcPy3nSJc txVuKPAf3S/VwHnXEPbUk65rfwuYtv2QZSvwD+V9EXkjofL1cQOF2C2pSydXcud2w4pA Ot0RYi4gSqaQ3MhQMDZqLRSpNMwoj7Z9n+T49ZJ/ZhS4KRcy3aMw0wyZZWyDCS+Af8G5 Gvag== X-Gm-Message-State: AO0yUKXF9qbp0WbtDWKOGApXwxLOJ/7iTyIv4g+LsAV7HGPqXRjIgrtJ GL6CGMghznycOq96anO3DfQ= X-Google-Smtp-Source: AK7set/+7G0ih64Qwf1DXO4nwKz2HOwVRaFRdNvLx9ZFRRYULUHWeXEm0Xc/rAoyIsIE3FWfCdEFOA== X-Received: by 2002:a50:9b18:0:b0:4ac:b31c:83d3 with SMTP id o24-20020a509b18000000b004acb31c83d3mr6708952edi.14.1676220363752; Sun, 12 Feb 2023 08:46:03 -0800 (PST) Received: from lumine.fritz.box (85-127-52-93.dsl.dynamic.surfer.at. [85.127.52.93]) by smtp.gmail.com with ESMTPSA id w9-20020a50d789000000b004aacee2728dsm5397558edi.19.2023.02.12.08.46.02 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 12 Feb 2023 08:46:03 -0800 (PST) Message-ID: <7623b92e7411f317726cf84b3072027ab669b3c6.camel@gmail.com> Subject: Re: [PATCH 0/5] Expose upstream linux sources From: Liliana Marie Prikler To: jlicht@fsfe.org, 61454@debbugs.gnu.org Date: Sun, 12 Feb 2023 17:46:01 +0100 In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.0 MIME-Version: 1.0 X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Am Sonntag, dem 12.02.2023 um 16:39 +0100 schrieb jlicht@fsfe.org: > * Is this fundamentally going to be an issue with the FSDG? A free system distribution must not steer users towards obtaining any n [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (liliana.prikler[at]gmail.com) 1.3 RCVD_IN_VALIDITY_RPBL RBL: Relay in Validity RPBL, https://senderscore.org/blocklistlookup/ [209.85.208.65 listed in bl.score.senderscore.com] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.85.208.65 listed in wl.mailspike.net] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.208.65 listed in list.dnswl.org] X-Debbugs-Envelope-To: 61454 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) Am Sonntag, dem 12.02.2023 um 16:39 +0100 schrieb jlicht@fsfe.org: > * Is this fundamentally going to be an issue with the FSDG? A free system distribution must not steer users towards obtaining any nonfree information for practical use, or encourage them to do so. Cheers From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 12 13:55:05 2023 Received: (at submit) by debbugs.gnu.org; 12 Feb 2023 18:55:05 +0000 Received: from localhost ([127.0.0.1]:46742 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRHVA-0005E2-UK for submit@debbugs.gnu.org; Sun, 12 Feb 2023 13:55:05 -0500 Received: from lists.gnu.org ([209.51.188.17]:34098) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRHV9-0005Du-Aj for submit@debbugs.gnu.org; Sun, 12 Feb 2023 13:55:03 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRHV8-00054h-C5 for guix-patches@gnu.org; Sun, 12 Feb 2023 13:55:02 -0500 Received: from tobias.gr ([2a02:c205:2020:6054::1]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRHV6-00073I-Nr for guix-patches@gnu.org; Sun, 12 Feb 2023 13:55:02 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=g5pa30EOwwYZx G2TUPRJeZmMRta7VgOC9fU0WfWRruc=; h=in-reply-to:date:subject:cc:to: from:references; d=tobias.gr; b=faExuUuyB7hpKBfoxm1zzbUwVOFUSP6RTKzU8x gfB1Ev1RZjaL8+90eGBx6oujNNLmL+M9tWF0CIr2nA6Q1Ga19zZ5UoD8Cu6dDAghy+/hz1 TFnyVcD06mDoFdwSjEQBI9uHV62keusls4EeCJ1x6whEDPEczSqZLXQyqOHTc7ch5XccUD hMYKrwQGbr6KbhRocKrG53BbYJGYzLQLaLw0Ia8JY2K/IkaasZ71Bgz94musNoY53CoJ63 86sZ92+CCCYOEkVGxulj9DkkXHQfRrJn7gKMb2WBU8OqFCPZd+rO2pRf9oL46Yn19QfAUL LH9dV6VYt3XkHY0PzhVWsWtg== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 055af677 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Sun, 12 Feb 2023 18:54:56 +0000 (UTC) References: From: Tobias Geerinckx-Rice To: jlicht@fsfe.org Subject: Re: [bug#61454] [PATCH 0/5] Expose upstream linux sources Date: Sun, 12 Feb 2023 19:53:35 +0100 In-reply-to: BIMI-Selector: v=BIMI1; s=default; Message-ID: <87zg9iempe.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=2a02:c205:2020:6054::1; envelope-from=me@tobias.gr; helo=tobias.gr X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit Cc: 61454@debbugs.gnu.org, guix-patches@gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.6 (--) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Hi Jelle! jlicht@fsfe.org =E5=86=99=E9=81=93=EF=BC=9A > * Is this fundamentally going to be an issue with the FSDG? I can't think of a reading of the FSDG where it is not against=20 both the letter and the spirit. Guix already ventures close to the edge; this would push us clean=20 over. > * This is the 'dumb' solution; alternatively, I was thinking of=20 > introducing a > record to unify all the moving parts (the upstream sources,=20 > the deblob > scripts) involved in building our linux-libre kernels. I'm not sure this will suit your purposes any better without=20 amounting to the same thing. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCY+k2jQ0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15+icA/29CunZvAeBgj/4ERm1Ap7h0abTanODx3i2b3/fV DquCAP9Fb6zeci8J5dyzMFy7rkhujzosmdgU+z12HyiB5unnCw== =bA2j -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 12 14:23:41 2023 Received: (at 61454-close) by debbugs.gnu.org; 12 Feb 2023 19:23:41 +0000 Received: from localhost ([127.0.0.1]:46789 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRHwq-0008Li-Qx for submit@debbugs.gnu.org; Sun, 12 Feb 2023 14:23:41 -0500 Received: from mail1.fsfe.org ([217.69.89.151]:45422) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRHwp-0008LZ-1i for 61454-close@debbugs.gnu.org; Sun, 12 Feb 2023 14:23:39 -0500 From: Jelle Licht DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fsfe.org; s=2021100501; t=1676229816; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=PqBZlLsLi4wKQ/adtQPEMgVCAkRxpHCBuOCRGG3jm/M=; b=AX+FLfm5L0Mhkigx2kn0LirsW1/4fvJd/t63S/Z2a+HdJY5oBMSSKPBTCRW0OXUJFrJrCN NAyzDlLTIUdh02MPdOWrh2H8vlmeOUkxj6g6ompyMGOJGyleyqY87KxzdYLAv9Ln8X7hxH FNzmVQgMKLHZAJ6FiKfJExuAA63amSc= To: Tobias Geerinckx-Rice Subject: Re: [bug#61454] [PATCH 0/5] Expose upstream linux sources In-Reply-To: <87zg9iempe.fsf@nckx> References: <87zg9iempe.fsf@nckx> Date: Sun, 12 Feb 2023 20:23:35 +0100 Message-ID: <87r0uusn60.fsf@fsfe.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61454-close Cc: 61454-close@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Tobias, Tobias Geerinckx-Rice writes: > Hi Jelle! > > jlicht@fsfe.org =E5=86=99=E9=81=93=EF=BC=9A >> * Is this fundamentally going to be an issue with the FSDG? > > I can't think of a reading of the FSDG where it is not against=20 > both the letter and the spirit. > > Guix already ventures close to the edge; this would push us clean=20 > over. Fair enough. I'll go ahead and assume that any "workaround" using public bindings exposed by guix can be considered a bug, later to be addressed by guix in order to prevent similar situations. >> * This is the 'dumb' solution; alternatively, I was thinking of=20 >> introducing a >> record to unify all the moving parts (the upstream sources,=20 >> the deblob >> scripts) involved in building our linux-libre kernels. > > I'm not sure this will suit your purposes any better without=20 > amounting to the same thing. It does, so never mind! Thanks for your input, - Jelle From unknown Mon Jun 23 07:48:58 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 13 Mar 2023 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator