* [bug#35223] [PATCH] gnu: linux-libre: Set DEVPTS_MULTIPLE_INSTANCES only where needed.
@ 2019-04-10 23:19 Tobias Geerinckx-Rice
2019-04-11 11:37 ` Ludovic Courtès
0 siblings, 1 reply; 4+ messages in thread
From: Tobias Geerinckx-Rice @ 2019-04-10 23:19 UTC (permalink / raw)
To: 35223
From: Tobias Geerinckx-Rice <me@tobias.gr>
* 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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#35223] [PATCH] gnu: linux-libre: Set DEVPTS_MULTIPLE_INSTANCES only where needed.
2019-04-10 23:19 [bug#35223] [PATCH] gnu: linux-libre: Set DEVPTS_MULTIPLE_INSTANCES only where needed Tobias Geerinckx-Rice
@ 2019-04-11 11:37 ` Ludovic Courtès
2019-04-11 12:43 ` Tobias Geerinckx-Rice
0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2019-04-11 11:37 UTC (permalink / raw)
To: Tobias Geerinckx-Rice; +Cc: 35223
Hello,
Tobias Geerinckx-Rice <somebody@not-sent-or-endorsed-by.tobias.gr>
skribis:
> From: Tobias Geerinckx-Rice <me@tobias.gr>
>
> * gnu/packages/linux.scm (%default-extra-linux-options): Move obsolete
> CONFIG_DEVPTS_MULTIPLE_INSTANCES option…
> (linux-libre-4.4): …here.
So “make config” was emitting a warning on kernels > 4.7, right?
As long as things still work after this patch, go for it!
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#35223] [PATCH] gnu: linux-libre: Set DEVPTS_MULTIPLE_INSTANCES only where needed.
2019-04-11 11:37 ` Ludovic Courtès
@ 2019-04-11 12:43 ` Tobias Geerinckx-Rice
2019-04-14 18:20 ` bug#35223: " Tobias Geerinckx-Rice
0 siblings, 1 reply; 4+ messages in thread
From: Tobias Geerinckx-Rice @ 2019-04-11 12:43 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 35223
[-- Attachment #1: Type: text/plain, Size: 636 bytes --]
Ludo',
Ludovic Courtès wrote:
> Tobias Geerinckx-Rice
> <somebody@not-sent-or-endorsed-by.tobias.gr>
> skribis:
>
>> From: Tobias Geerinckx-Rice <me@tobias.gr>
>>
>> * gnu/packages/linux.scm (%default-extra-linux-options): Move
>> obsolete
>> CONFIG_DEVPTS_MULTIPLE_INSTANCES option…
>> (linux-libre-4.4): …here.
>
> So “make config” 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
noticed that this option was missing.
> As long as things still work after this patch, go for it!
AFAICT: yes.
Thanks!
T G-R
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#35223: [PATCH] gnu: linux-libre: Set DEVPTS_MULTIPLE_INSTANCES only where needed.
2019-04-11 12:43 ` Tobias Geerinckx-Rice
@ 2019-04-14 18:20 ` Tobias Geerinckx-Rice
0 siblings, 0 replies; 4+ messages in thread
From: Tobias Geerinckx-Rice @ 2019-04-14 18:20 UTC (permalink / raw)
To: 35223-done
[-- Attachment #1: Type: text/plain, Size: 365 bytes --]
Tobias Geerinckx-Rice wrote:
>>> * gnu/packages/linux.scm (%default-extra-linux-options): Move
>>> obsolete
>>> CONFIG_DEVPTS_MULTIPLE_INSTANCES option…
>>> (linux-libre-4.4): …here.
[…]
>> As long as things still work after this patch, go for it!
>
> AFAICT: yes.
Pushed as 8b4e76249a4d1b4af5da6a8b07f4fb3c92234c07.
Kind regards,
T G-R
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-04-14 18:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-10 23:19 [bug#35223] [PATCH] gnu: linux-libre: Set DEVPTS_MULTIPLE_INSTANCES only where needed Tobias Geerinckx-Rice
2019-04-11 11:37 ` Ludovic Courtès
2019-04-11 12:43 ` Tobias Geerinckx-Rice
2019-04-14 18:20 ` bug#35223: " Tobias Geerinckx-Rice
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).