diff options
author | Maxim Cournoyer <[email protected]> | 2025-03-05 10:37:56 +0900 |
---|---|---|
committer | Maxim Cournoyer <[email protected]> | 2025-03-05 14:25:05 +0900 |
commit | 97be0a837e7f069b25dc76f86f7d6510601830f2 (patch) | |
tree | f42845f9d3761096626c31c22ea39065b033a00a /gnu/services | |
parent | b821b80d46d454464671c154ddb9cc727afafab8 (diff) |
Revert "services/udev: Allow configuring udev to run in debug mode."
This reverts commit dd64f441d3dcff9165927b821da2b69b1fc6a24f. Enabling debug
output for udevd apparently hangs the boot.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/base.scm | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index a5d9e6334e..0d2bb31190 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -15,7 +15,7 @@ ;;; Copyright © 2020, 2021 Brice Waegeneire <[email protected]> ;;; Copyright © 2021 qblade <[email protected]> ;;; Copyright © 2021 Hui Lu <[email protected]> -;;; Copyright © 2021-2023, 2025 Maxim Cournoyer <[email protected]> +;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <[email protected]> ;;; Copyright © 2021, 2025 muradm <[email protected]> ;;; Copyright © 2022 Guillaume Le Vaillant <[email protected]> ;;; Copyright © 2022 Justin Veilleux <[email protected]> @@ -160,8 +160,6 @@ udev-configuration udev-configuration? - udev-configuration-udev - udev-configuration-debug? udev-configuration-rules udev-configuration-hardware udev-service-type @@ -2412,8 +2410,6 @@ command that allows you to share pre-built binaries with others over HTTP."))) udev-configuration? (udev udev-configuration-udev ;file-like (default eudev)) - (debug? udev-configuration-debug? ;boolean - (default #f)) (rules udev-configuration-rules ;list of file-like (default '())) (hardware udev-configuration-hardware ;list of file-like @@ -2556,10 +2552,7 @@ item of PACKAGES." (umask old-umask)) (let ((pid (fork+exec-command - `(,udevd - ,@(if #$(udev-configuration-debug? config) - '("--debug") - '())) + (list udevd) #:environment-variables (cons* ;; The first one is for udev, the second one for |