diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-01-04 23:04:21 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-01-05 00:28:42 +0100 |
commit | fb74174958800496e40aec07543bff07cfaa7b35 (patch) | |
tree | 3eae027b3d005ad703ff524862566e90f55c840c /gnu/build/linux-boot.scm | |
parent | be7be9e8dd9411d8d5bcea75c506326393ea2842 (diff) | |
download | patches-fb74174958800496e40aec07543bff07cfaa7b35.tar patches-fb74174958800496e40aec07543bff07cfaa7b35.tar.gz |
linux-boot: Remove verbose output for module loads.
* gnu/build/linux-boot.scm (boot-system): Leave
'current-module-debugging-port' unchanged.
* gnu/build/linux-modules.scm (load-linux-module*): Update comment about
'mmap'.
Diffstat (limited to 'gnu/build/linux-boot.scm')
-rw-r--r-- | gnu/build/linux-boot.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/build/linux-boot.scm b/gnu/build/linux-boot.scm index 30d6570b04..0fc90af6a3 100644 --- a/gnu/build/linux-boot.scm +++ b/gnu/build/linux-boot.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -381,7 +381,6 @@ to it are lost." (start-repl)) (display "loading kernel modules...\n") - (current-module-debugging-port (current-output-port)) (for-each (cut load-linux-module* <> #:lookup-module lookup-module) (map lookup-module linux-modules)) |