From: Jan Nieuwenhuizen <janneke@gnu.org>
To: "pelzflorian (Florian Pelz)" <pelzflorian@pelzflorian.de>
Cc: 39671@debbugs.gnu.org, Joshua Branson <jbranso@dismail.de>
Subject: bug#39671: Something appears to disable linux kernel modules from loading.
Date: Thu, 20 Feb 2020 22:08:48 +0100 [thread overview]
Message-ID: <87lfox2cgv.fsf@gnu.org> (raw)
In-Reply-To: <20200220205853.tpb6tf7wtdtjiotm@pelzflorian.localdomain> (pelzflorian@pelzflorian.de's message of "Thu, 20 Feb 2020 21:58:53 +0100")
[-- Attachment #1: Type: text/plain, Size: 560 bytes --]
pelzflorian (Florian Pelz) writes:
Hi Florian,
> On Thu, Feb 20, 2020 at 09:43:45PM +0100, pelzflorian (Florian Pelz) wrote:
>> (I wonder why it does not apply; there were no changes to
>> gnu/services/base.scm in a long time. Strange.)
>>
>
> It did not apply for me either. Here it is in compressed form so its
> encoding is not changed.
It works for me; thank you! It did not apply -- I do not have this
From 11509370049355680c815e06250afc09325c589c Mon Sep 17 00:00:00 2001
commit.
Attached is the result of my manual application...
janneke
[-- Attachment #2: 0001-services-udev-Do-not-rely-on-shepherd-inheriting-env.patch --]
[-- Type: text/x-patch, Size: 2774 bytes --]
From d057c431b707b26ce852d8ba692e9307248d0f63 Mon Sep 17 00:00:00 2001
From: Florian Pelz <pelzflorian@pelzflorian.de>
Date: Thu, 20 Feb 2020 14:05:06 +0100
Subject: [PATCH] services: udev: Do not rely on shepherd inheriting
environment variables.
Fixes <https://bugs.gnu.org/39671>.
* gnu/services/base.scm (udev-shepherd-service)[start] Move or copy
environment variables to 'fork+exec-command' instead of 'setenv'.
---
gnu/services/base.scm | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index 0c154d1c4e..706b3ae7ec 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -11,6 +11,7 @@
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019 John Soo <jsoo1@asu.edu>
;;; Copyright © 2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2020 Florian Pelz <pelzflorian@pelzflorian.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2037,11 +2038,6 @@ item of @var{packages}."
(setenv "LINUX_MODULE_DIRECTORY"
"/run/booted-system/kernel/lib/modules")
- ;; The first one is for udev, the second one for eudev.
- (setenv "UDEV_CONFIG_FILE" #$udev.conf)
- (setenv "EUDEV_RULES_DIRECTORY"
- #$(file-append rules "/lib/udev/rules.d"))
-
(let* ((kernel-release
(utsname:release (uname)))
(linux-module-directory
@@ -2058,7 +2054,18 @@ item of @var{packages}."
(make-static-device-nodes directory))
(umask old-umask))
- (let ((pid (fork+exec-command (list udevd))))
+ (let ((pid (fork+exec-command (list udevd)
+ #:environment-variables
+ (cons*
+ ;; The first one is for udev, the second one for
+ ;; eudev.
+ (string-append "UDEV_CONFIG_FILE=" #$udev.conf)
+ (string-append "EUDEV_RULES_DIRECTORY="
+ #$(file-append
+ rules "/lib/udev/rules.d"))
+ (string-append "LINUX_MODULE_DIRECTORY="
+ (getenv "LINUX_MODULE_DIRECTORY"))
+ (default-environment-variables)))))
;; Wait until udevd is up and running. This appears to
;; be needed so that the events triggered below are
;; actually handled.
--
2.24.0
[-- Attachment #3: Type: text/plain, Size: 152 bytes --]
--
Jan Nieuwenhuizen <janneke@gnu.org> | GNU LilyPond http://lilypond.org
Freelance IT http://JoyofSource.com | Avatar® http://AvatarAcademy.com
next prev parent reply other threads:[~2020-02-20 21:10 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-18 23:11 bug#39671: Something appears to disable linux kernel modules from loading Joshua Branson via Bug reports for GNU Guix
2020-02-19 21:18 ` bug#39671: Linux-Libre 5.4.20 breaks Display Sessions Raghav Gururajan
2020-02-19 21:31 ` bug#39671: Something appears to disable linux kernel modules from loading Ludovic Courtès
2020-02-19 21:50 ` Jack Hill
2020-02-19 22:11 ` Ludovic Courtès
2020-02-19 22:50 ` Jack Hill
2020-02-20 10:18 ` pelzflorian (Florian Pelz)
2020-02-20 12:12 ` pelzflorian (Florian Pelz)
2020-02-20 19:59 ` pelzflorian (Florian Pelz)
2020-02-20 20:34 ` Leo Famulari
2020-02-20 20:43 ` pelzflorian (Florian Pelz)
2020-02-20 20:58 ` pelzflorian (Florian Pelz)
2020-02-20 21:08 ` Jan Nieuwenhuizen [this message]
2020-02-20 21:06 ` Leo Famulari
2020-02-20 22:02 ` Ludovic Courtès
2020-02-20 23:24 ` pelzflorian (Florian Pelz)
2020-02-20 15:55 ` Joshua Branson via Bug reports for GNU Guix
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87lfox2cgv.fsf@gnu.org \
--to=janneke@gnu.org \
--cc=39671@debbugs.gnu.org \
--cc=jbranso@dismail.de \
--cc=pelzflorian@pelzflorian.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.