From debbugs-submit-bounces@debbugs.gnu.org Fri May 24 17:57:55 2019 Received: (at submit) by debbugs.gnu.org; 24 May 2019 21:57:55 +0000 Received: from localhost ([127.0.0.1]:47502 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hUICI-0005pl-Sz for submit@debbugs.gnu.org; Fri, 24 May 2019 17:57:55 -0400 Received: from eggs.gnu.org ([209.51.188.92]:56474) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hUICG-0005pW-Jh for submit@debbugs.gnu.org; Fri, 24 May 2019 17:57:53 -0400 Received: from lists.gnu.org ([209.51.188.17]:38756) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hUICB-0002ZK-Dp for submit@debbugs.gnu.org; Fri, 24 May 2019 17:57:47 -0400 Received: from eggs.gnu.org ([209.51.188.92]:42622) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hUICA-0001r0-5s for guix-patches@gnu.org; Fri, 24 May 2019 17:57:47 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_40,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hUIC8-0002Xn-VL for guix-patches@gnu.org; Fri, 24 May 2019 17:57:46 -0400 Received: from mail2.protonmail.ch ([185.70.40.22]:46069) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hUIC8-0002WC-Cd for guix-patches@gnu.org; Fri, 24 May 2019 17:57:44 -0400 Date: Fri, 24 May 2019 21:57:29 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=carldong.me; s=protonmail; t=1558735057; bh=VxYqGVtpSNfm0j6fF9NNm6gxz11pOqGXYGCEgwH7sEs=; h=Date:To:From:Cc:Reply-To:Subject:Feedback-ID:From; b=Y9mPATzd+n3OdepZ4cBLcL9m7bvofumX9w5VYKvNN8CKldg4h5rZ5fXtnZL6NOXAs hk1no0Fug7fshkyCd6RVln1xQKCujSKTyYBe4Ukm9A8dO9tGTwAixFEdgTpoBwKAFM Vo4JCGw7YNjxxV4ERN9TYbEMUS82EgDjJuiH6DN0= To: guix-patches@gnu.org From: Carl Dong Subject: [PATCH] gnu: Use make-linux-libre-headers. Message-ID: Feedback-ID: a8j8tDUaJ4AYuDVBywMTwsJebN4w8TVXadJLsJb8td3t3dZi9RdXFlPaQvoFKnI9KgXySsPXcRkajVyY0cGTcA==:Ext:ProtonMail MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 185.70.40.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Carl Dong 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: , Reply-To: Carl Dong Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/linux.scm (make-linux-libre-headers): New variable. (linux-libre): Rename and define as linux-libre-5.1. (linux-libre-headers): Rename and define as linux-libre-headers-4.14.67. (linux-libre-5.1, linux-libre-headers-4.14.67): Use make-linux-libre-headers. (linux-libre-5.1, linux-libre-headers-5.1, linux-libre-headers-4.19, %linux-libre-4.15-version, %linux-libre-4.15-hash, linux-libre-4.15, linux-libre-headers-4.15, linux-libre-headers-4.14): New variables. --- gnu/packages/linux.scm | 48 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 41 insertions(+), 7 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index b645249649..18e091a95a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -169,18 +169,20 @@ defconfig. Return the appropriate make target if app= licable, otherwise return "mirror://gnu/linux-libre/" version "-gnu/linux-libre-" version "-gnu.tar.xz"))) =20 -(define-public linux-libre-headers +(define (make-linux-libre-headers version hash) (package (name "linux-libre-headers") - (version "4.14.67") + (version version) (source (origin (method url-fetch) (uri (linux-libre-urls version)) - (sha256 - (base32 - "050zvdxjy6sc64q75pr1gxsmh49chwav2pwxz8xlif39bvahnrpg")))) + (sha256 (base32 hash)))) (build-system gnu-build-system) - (native-inputs `(("perl" ,perl))) + (native-inputs `(("perl" ,perl) + ,@(if (version>=3D? version "4.16") + `(("flex" ,flex) + ("bison" ,bison)) + '()))) (arguments `(#:modules ((guix build gnu-build-system) (guix build utils) @@ -433,13 +435,17 @@ It has been modified to remove all non-free binary bl= obs.") (list %boot-logo-patch %linux-libre-arm-export-__sync_icache_dcache-patch)) =20 -(define-public linux-libre +(define-public linux-libre-5.1 (make-linux-libre %linux-libre-version %linux-libre-hash '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-l= inux") #:patches %linux-libre-5.1-patches #:configuration-file kernel-config)) =20 +(define-public linux-libre-headers-5.1 + (make-linux-libre-headers %linux-libre-version + %linux-libre-hash)) + (define %linux-libre-4.19-version "4.19.45") (define %linux-libre-4.19-hash "1wiy8vzpzzml4k76nv3ycjx7ky55x7dqx3mgpjqbh7= 3mj2gcr5bx") =20 @@ -454,6 +460,23 @@ It has been modified to remove all non-free binary blo= bs.") #:patches %linux-libre-4.19-patches #:configuration-file kernel-config)) =20 +(define-public linux-libre-headers-4.19 + (make-linux-libre-headers %linux-libre-4.19-version + %linux-libre-4.19-hash)) + +(define %linux-libre-4.15-version "4.15.18") +(define %linux-libre-4.15-hash "0f0s4drx888ydlwjcm9qcxqian4850yiv2vamyw9bb= jf83frwxyw") + +(define-public linux-libre-4.15 + (make-linux-libre %linux-libre-4.15-version + %linux-libre-4.15-hash + '("x86_64-linux" "i686-linux" "armhf-linux") + #:configuration-file kernel-config)) + +(define-public linux-libre-headers-4.15 + (make-linux-libre-headers %linux-libre-4.15-version + %linux-libre-4.15-hash)) + (define %linux-libre-4.14-version "4.14.121") (define %linux-libre-4.14-hash "1g7gyjmp056pasf9m34dqs8pa15my6hqasdd551jw8= mgkbhsfnxg") =20 @@ -463,6 +486,10 @@ It has been modified to remove all non-free binary blo= bs.") '("x86_64-linux" "i686-linux" "armhf-linux") #:configuration-file kernel-config)) =20 +(define-public linux-libre-headers-4.14 + (make-linux-libre-headers %linux-libre-4.14-version + %linux-libre-4.14-hash)) + (define-public linux-libre-4.9 (make-linux-libre "4.9.178" "1ridlkymf382qnkc6hi07pkghrrxfv2avx55snjnkfcpdccvsmrb" @@ -481,6 +508,13 @@ It has been modified to remove all non-free binary blo= bs.") ("CONFIG_DEVPTS_MULTIPLE_INSTANCES" . #t)) %default-extra-linux-options))) =20 +(define-public linux-libre-headers-4.14.67 + (make-linux-libre-headers "4.14.67" + "050zvdxjy6sc64q75pr1gxsmh49chwav2pwxz8xlif39b= vahnrpg")) + +(define-public linux-libre-headers linux-libre-headers-4.14.67) +(define-public linux-libre linux-libre-5.1) + (define-public linux-libre-arm-generic (make-linux-libre %linux-libre-version %linux-libre-hash --=20 2.21.0 From debbugs-submit-bounces@debbugs.gnu.org Fri May 24 18:05:46 2019 Received: (at 35888) by debbugs.gnu.org; 24 May 2019 22:05:46 +0000 Received: from localhost ([127.0.0.1]:47514 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hUIJr-00064I-W8 for submit@debbugs.gnu.org; Fri, 24 May 2019 18:05:46 -0400 Received: from mail1.protonmail.ch ([185.70.40.18]:11108) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hUIJp-000643-4N for 35888@debbugs.gnu.org; Fri, 24 May 2019 18:05:41 -0400 Date: Fri, 24 May 2019 22:05:18 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=carldong.me; s=protonmail; t=1558735522; bh=20J/g3DEyNB00IpOlPUqMZamSCDTwXfstpo5g2mGuNk=; h=Date:To:From:Reply-To:Subject:Feedback-ID:From; b=FZFNlU4Qga7aMqmEyKJ3Vo0nUb2lJA+BatFKDUsG7rZ1Fdsudd5K4Nn6qzlOlB5T1 KQez7NOhDxsZq4+ux5/3pDitOVFoHl0zMPlo8x7Mhf+4v7X8KKO1wv1DcIk6GbJ+UC s7+0liZ5QLCOuATich1wJuBq29WxYR61iT1W9X1g= To: "35888@debbugs.gnu.org" <35888@debbugs.gnu.org> From: Carl Dong Subject: Re: [PATCH] gnu: Use make-linux-libre-headers. Message-ID: Feedback-ID: a8j8tDUaJ4AYuDVBywMTwsJebN4w8TVXadJLsJb8td3t3dZi9RdXFlPaQvoFKnI9KgXySsPXcRkajVyY0cGTcA==:Ext:ProtonMail MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=7.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mail.protonmail.ch X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 35888 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: , Reply-To: Carl Dong Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) To give a bit more context to this that I explained over IRC to rekado, 4.1= 5 is the lowest kernel version that is required for riscv64 support (which I hav= e locally but am upstreaming bit-by-bit). I tested make-linux-libre-headers w= ith the rest of the already declared kernel versions and they build fine, but f= eel free to remove them :-) Note that unlike my conversation with rekado, I am not bumping the default linux-libre-headers here (see how it is -4.14.67 not just -4.14), just so t= his can avoid triggering massive rebuilds. Cheers, Carl Dong accounts@carldong.me "I fight for the users" From debbugs-submit-bounces@debbugs.gnu.org Wed May 29 12:32:19 2019 Received: (at 35888) by debbugs.gnu.org; 29 May 2019 16:32:19 +0000 Received: from localhost ([127.0.0.1]:59703 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hW1Ux-0001a7-9o for submit@debbugs.gnu.org; Wed, 29 May 2019 12:32:19 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:53996) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hW1Uv-0001Zy-Aq for 35888@debbugs.gnu.org; Wed, 29 May 2019 12:32:18 -0400 Received: from localhost (178.113.234.233.wireless.dyn.drei.com [178.113.234.233]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 91CAF3360A67; Wed, 29 May 2019 18:32:15 +0200 (CEST) Date: Wed, 29 May 2019 18:32:12 +0200 From: Danny Milosavljevic To: Carl Dong Subject: Re: [bug#35888] [PATCH] gnu: Use make-linux-libre-headers. Message-ID: <20190529183212.4a54280f@scratchpost.org> In-Reply-To: References: X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/a4P6kAwI+U00ctT2RKYA.7L"; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 35888 Cc: "35888-done@debbugs.gnu.org" <35888@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.7 (-) --Sig_/a4P6kAwI+U00ctT2RKYA.7L Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Pushed to guix master as commit a15cee50cebddc665a16b455f44e22dcfb87d57f with slight changes to the commit message. Thanks! --Sig_/a4P6kAwI+U00ctT2RKYA.7L Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAlzutAwACgkQ5xo1VCww uqV5Twf/ZtpHVlZ3kVnfZ4eERcnIDCjTZ9JVRFjF46BZ1intOd8OESQDUQW3drNN 5HRJ5OHDpWOcAQxB8LOOv2JwXz8pLdj1R8rxgTXA7CcLScX1PfM3VOag8wh7q62f si3xm7UUiKH4KxYy2v8uIiywKOIPbuGf5Y0v9aF1m9+OHWR7vOOCo214e5q1OAax 9dSI+63EKAkVFiWtTvEw/XPcwg6kE157AfEstHV/KEB89NoktAlgphcz7jp7jLew BQlx87ol9iz4ti6wRl2B7sD1Jb9PAi6sq1KuKYh0lVIhiBADoCzsZxFbOv1PKfHf qw2gbGuztCULdD+gd5drdMV/Wk7/UA== =kMq3 -----END PGP SIGNATURE----- --Sig_/a4P6kAwI+U00ctT2RKYA.7L-- From debbugs-submit-bounces@debbugs.gnu.org Wed May 29 12:32:34 2019 Received: (at control) by debbugs.gnu.org; 29 May 2019 16:32:34 +0000 Received: from localhost ([127.0.0.1]:59706 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hW1VC-0001ag-H8 for submit@debbugs.gnu.org; Wed, 29 May 2019 12:32:34 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:54012) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hW1V9-0001aV-5E for control@debbugs.gnu.org; Wed, 29 May 2019 12:32:31 -0400 Received: from localhost (178.113.234.233.wireless.dyn.drei.com [178.113.234.233]) by dd26836.kasserver.com (Postfix) with ESMTPSA id 651653360A67 for ; Wed, 29 May 2019 18:32:30 +0200 (CEST) Date: Wed, 29 May 2019 18:32:29 +0200 From: Danny Milosavljevic To: Message-ID: <20190529183229.40b88be7@scratchpost.org> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/o3uDA1=PwvjL5I/ET38hup1"; protocol="application/pgp-signature" 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: close 35888 Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [85.13.145.193 listed in list.dnswl.org] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 SPF_NONE SPF: sender does not publish an SPF Record 0.0 TVD_SPACE_RATIO No description available. 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject 0.0 TVD_SPACE_RATIO_MINFP Space ratio X-Debbugs-Envelope-To: control 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 (/) --Sig_/o3uDA1=PwvjL5I/ET38hup1 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable close 35888 --Sig_/o3uDA1=PwvjL5I/ET38hup1 Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAlzutB0ACgkQ5xo1VCww uqW8fwgAoDG+C3MwnlMTOEwcBV7D+16oQn6IvMmOmpZzS6pX1NjYAwA0rHoCqzkg 7YPGBetJ2WbikH2D6HpCOoGgv3TYZCZCuvknPOPOEa0hIzMu7r6UWqfxDBAZlxtS WK+mzIydtvvbmifcIi7XNwF1rFczAV/8dndhFS7PWnuuBix34rXfx5Cw4928GPWT 65V7/pq9a6gbcrwxsIAEmHXEWpy3aKLKbzMzwxFsauiKNmHuKPA5sHt5IEWSOWoC 7hb5NDixhNJBinS04Capeg851Tvnx0Ll1hF0YGOKbGsvrCIMQeDGDCnADMgpAmjJ cy95SmVNQDss2vTBSxFLYuWWELWteQ== =CzDr -----END PGP SIGNATURE----- --Sig_/o3uDA1=PwvjL5I/ET38hup1-- From unknown Sat Aug 16 18:31:48 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 27 Jun 2019 11:24:08 +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