From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 10 19:20:09 2019 Received: (at submit) by debbugs.gnu.org; 10 Apr 2019 23:20:09 +0000 Received: from localhost ([127.0.0.1]:53659 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hEMVk-0006I6-N6 for submit@debbugs.gnu.org; Wed, 10 Apr 2019 19:20:09 -0400 Received: from eggs.gnu.org ([209.51.188.92]:57755) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hEMVh-0006HU-7Y for submit@debbugs.gnu.org; Wed, 10 Apr 2019 19:20:06 -0400 Received: from lists.gnu.org ([209.51.188.17]:36184) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hEMVb-0006z7-Ru for submit@debbugs.gnu.org; Wed, 10 Apr 2019 19:19:59 -0400 Received: from eggs.gnu.org ([209.51.188.92]:43902) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hEMVa-0008Bl-M8 for guix-patches@gnu.org; Wed, 10 Apr 2019 19:19:59 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,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 1hEMVY-0006xb-RN for guix-patches@gnu.org; Wed, 10 Apr 2019 19:19:58 -0400 Received: from tobias.gr ([2001:470:7405::1]:35266) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hEMVY-0006w5-Et for guix-patches@gnu.org; Wed, 10 Apr 2019 19:19:56 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id 1664202e; Wed, 10 Apr 2019 23:19:52 +0000 (UTC) Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id f7f5f1df (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Wed, 10 Apr 2019 23:19:52 +0000 (UTC) From: Tobias Geerinckx-Rice To: guix-patches@gnu.org Subject: [PATCH] gnu: linux-libre: Set DEVPTS_MULTIPLE_INSTANCES only where needed. Date: Thu, 11 Apr 2019 01:19:36 +0200 Message-Id: <20190410231936.15275-1-somebody@not-sent-or-endorsed-by.tobias.gr> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2001:470:7405::1 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Tobias Geerinckx-Rice 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.4 (--) From: Tobias Geerinckx-Rice * gnu/packages/linux.scm (%default-extra-linux-options): Move obsolete CONFIG_DEVPTS_MULTIPLE_INSTANCES option… (linux-libre-4.4): …here. --- gnu/packages/linux.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 710fd2d299..c80cee6422 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -264,9 +264,7 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." (search-auxiliary-file file))) (define %default-extra-linux-options - `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html - ("CONFIG_DEVPTS_MULTIPLE_INSTANCES" . #t) - ;; Modules required for initrd: + `(;; Modules required for initrd: ("CONFIG_NET_9P" . m) ("CONFIG_NET_9P_VIRTIO" . m) ("CONFIG_VIRTIO_BLK" . m) @@ -471,7 +469,13 @@ It has been modified to remove all non-free binary blobs.") (make-linux-libre "4.4.178" "1lgsd760md6b32qb5ng3anfq1n754a9d0c4xnf2mjxkimncb1jpp" '("x86_64-linux" "i686-linux") - #:configuration-file kernel-config)) + #:configuration-file kernel-config + #:extra-options + (append + `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html + ;; This option was removed upstream in version 4.7. + ("CONFIG_DEVPTS_MULTIPLE_INSTANCES" . #t)) + %default-extra-linux-options))) (define-public linux-libre-arm-generic (make-linux-libre %linux-libre-version -- 2.21.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 11 07:37:37 2019 Received: (at 35223) by debbugs.gnu.org; 11 Apr 2019 11:37:37 +0000 Received: from localhost ([127.0.0.1]:53975 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hEY1Q-0007j1-V9 for submit@debbugs.gnu.org; Thu, 11 Apr 2019 07:37:37 -0400 Received: from eggs.gnu.org ([209.51.188.92]:60498) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hEY1N-0007in-Hv for 35223@debbugs.gnu.org; Thu, 11 Apr 2019 07:37:35 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:53137) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hEY1F-0004eW-Bz; Thu, 11 Apr 2019 07:37:25 -0400 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=50400 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hEY1E-0002hc-Tt; Thu, 11 Apr 2019 07:37:25 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Tobias Geerinckx-Rice Subject: Re: [bug#35223] [PATCH] gnu: linux-libre: Set DEVPTS_MULTIPLE_INSTANCES only where needed. References: <20190410231936.15275-1-somebody@not-sent-or-endorsed-by.tobias.gr> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 22 Germinal an 227 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Thu, 11 Apr 2019 13:37:23 +0200 In-Reply-To: <20190410231936.15275-1-somebody@not-sent-or-endorsed-by.tobias.gr> (Tobias Geerinckx-Rice's message of "Thu, 11 Apr 2019 01:19:36 +0200") Message-ID: <877ec022oc.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) 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-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 35223 Cc: 35223@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: -3.3 (---) Hello, Tobias Geerinckx-Rice skribis: > From: Tobias Geerinckx-Rice > > * gnu/packages/linux.scm (%default-extra-linux-options): Move obsolete > CONFIG_DEVPTS_MULTIPLE_INSTANCES option=E2=80=A6 > (linux-libre-4.4): =E2=80=A6here. So =E2=80=9Cmake config=E2=80=9D was emitting a warning on kernels > 4.7, r= ight? As long as things still work after this patch, go for it! Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 11 08:44:14 2019 Received: (at 35223) by debbugs.gnu.org; 11 Apr 2019 12:44:14 +0000 Received: from localhost ([127.0.0.1]:54003 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hEZ3u-00018N-G8 for submit@debbugs.gnu.org; Thu, 11 Apr 2019 08:44:14 -0400 Received: from tobias.gr ([80.241.217.52]:41354) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hEZ3r-00018D-Np for 35223@debbugs.gnu.org; Thu, 11 Apr 2019 08:44:13 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id 42095f51; Thu, 11 Apr 2019 12:44:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to:cc :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=FCSkoB0lLss0vfAgBvNUug b43XbYNSdhgW9cAQgIJ1o=; b=pgyStunNvB2r8mm2HcAvsSnZZcSpTtXrFt8DhY qchIrMTfnvfnTI4aleiEUT4D5YoWcEgbPYXDNMPyHLPuq/2+7qFWHNmX1Bbs3Xe3 GLgiAQB0tYuMEyJT+OxMVmQPgBirVgp97p2NvGx00FAx9VQAFZwseZ6GPoKXckrV hkaaIDQejZ/KOUfn2TkHnJMBUZ0j/8bIVAcHJO35EApYnl1NoLu+47GbVjxuwV+c gU3/29/rFxfyovBiUeZa93xKGMHilafOMqmZvcttfq2zhd1MdG7uWpPIzhnCXYOq BR1/LC4FqQ4C3C0eqVJbi82HJnH4ixJu2rxh+FXA+1ooJWOQ== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 6a5880e8 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Thu, 11 Apr 2019 12:44:01 +0000 (UTC) From: Tobias Geerinckx-Rice To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#35223] [PATCH] gnu: linux-libre: Set DEVPTS_MULTIPLE_INSTANCES only where needed. References: <20190410231936.15275-1-somebody@not-sent-or-endorsed-by.tobias.gr> <877ec022oc.fsf@gnu.org> In-reply-to: <877ec022oc.fsf@gnu.org> Date: Thu, 11 Apr 2019 14:43:56 +0200 Message-ID: <87mukwsodv.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 35223 Cc: 35223@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: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Ludo', Ludovic Court=C3=A8s wrote: > Tobias Geerinckx-Rice=20 > > skribis: > >> From: Tobias Geerinckx-Rice >> >> * gnu/packages/linux.scm (%default-extra-linux-options): Move=20 >> obsolete >> CONFIG_DEVPTS_MULTIPLE_INSTANCES option=E2=80=A6 >> (linux-libre-4.4): =E2=80=A6here. > > So =E2=80=9Cmake config=E2=80=9D was emitting a warning on kernels > 4.7,= right? Oh, maybe; no idea. I was tweaking my old kustom (pf-)kernel to be Guix-ready and=20 noticed that this option was missing. > As long as things still work after this patch, go for it! AFAICT: yes. Thanks! T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQT12iAyS4c9C3o4dnINsP+IT1VteQUCXK82jQAKCRANsP+IT1Vt eRM1AQDMIEddtdUqUypxJdNbawClPeSu0n8ifndw9Hp0QXxqtAD+OzIEINm42fpO N06J7UsCT72jwaz4umWES/gdXyK5FAI= =fQaI -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Apr 14 14:21:03 2019 Received: (at 35223-done) by debbugs.gnu.org; 14 Apr 2019 18:21:03 +0000 Received: from localhost ([127.0.0.1]:33149 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hFjkU-00012Y-QM for submit@debbugs.gnu.org; Sun, 14 Apr 2019 14:21:03 -0400 Received: from tobias.gr ([80.241.217.52]:40382) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hFjkT-00011q-E9 for 35223-done@debbugs.gnu.org; Sun, 14 Apr 2019 14:21:02 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id 1c4e6e87 for <35223-done@debbugs.gnu.org>; Sun, 14 Apr 2019 18:20:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=gpj23AnyhDF80zs8VlgFBZ slf1jBFDlkOs6rNn7U0tg=; b=HV3gyPu7JJu4eo4qwKOAo44KLbkte6m8nULVmP pLnjPLpU9gxr5YP9z9xjC+g+T8zUePFgfF711PYJ2JNPT9/6qfHUG1/Pqa3XDhnS iFoypYwOkzqOq/2pgZOKK7ySvGOVeYtWWUZuq8EILetmUxJ5pAdeMgrh9IIKxX6H GANgzwNZXtdt/rASpaUxlje2gyPO9SxQS9Ngxbj4b4JX0whaczsgXHiRZZrBrL7l R0dZYCuw9kqcw1N31V12BqlHlnrYPr49uSdnwJAXoGKQgiLBWmd6tAG9SiLBjuQ/ MXkIqLfCElvWLIT9asSKGbmsDQg7e6C4rnk8c5PN4b6ZUe3g== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 43f8d7bf (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <35223-done@debbugs.gnu.org>; Sun, 14 Apr 2019 18:20:59 +0000 (UTC) From: Tobias Geerinckx-Rice To: 35223-done@debbugs.gnu.org Subject: Re: [bug#35223] [PATCH] gnu: linux-libre: Set DEVPTS_MULTIPLE_INSTANCES only where needed. References: <20190410231936.15275-1-somebody@not-sent-or-endorsed-by.tobias.gr> <877ec022oc.fsf@gnu.org> <87mukwsodv.fsf@nckx> In-reply-to: <87mukwsodv.fsf@nckx> Date: Sun, 14 Apr 2019 20:20:58 +0200 Message-ID: <87muksa1o5.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 35223-done 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: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Tobias Geerinckx-Rice wrote: >>> * gnu/packages/linux.scm (%default-extra-linux-options): Move >>> obsolete >>> CONFIG_DEVPTS_MULTIPLE_INSTANCES option=E2=80=A6 >>> (linux-libre-4.4): =E2=80=A6here. [=E2=80=A6] >> As long as things still work after this patch, go for it! > > AFAICT: yes. Pushed as 8b4e76249a4d1b4af5da6a8b07f4fb3c92234c07. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQT12iAyS4c9C3o4dnINsP+IT1VteQUCXLN6CgAKCRANsP+IT1Vt eU3GAQDe3nLr4d/y0wsby3Oc0K0OGtkai6bApyoJ2HPf5dkv5QEAwOSw1zG9NzW+ +HG1PbPYzvyefZJVeL+6G+v2O+r9kQw= =Z1p6 -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Aug 16 13:46:02 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 May 2019 11:24:06 +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