[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/21: installer: Turn off kernel ring messages to console.
From: |
John Darrington |
Subject: |
04/21: installer: Turn off kernel ring messages to console. |
Date: |
Sat, 31 Dec 2016 14:54:17 +0000 (UTC) |
jmd pushed a commit to branch wip-installer
in repository guix.
commit a608ef1ddfcb181880b9e389ec7334d4732d6ec5
Author: John Darrington <address@hidden>
Date: Tue Dec 27 17:27:26 2016 +0100
installer: Turn off kernel ring messages to console.
* gnu/system/installer/new.scm: Add call to "dmesg --console-off"
---
gnu/system/installer/new.scm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gnu/system/installer/new.scm b/gnu/system/installer/new.scm
index 1a2cf74..a1e6275 100644
--- a/gnu/system/installer/new.scm
+++ b/gnu/system/installer/new.scm
@@ -230,7 +230,13 @@
(define-public (guixsd-installer)
+
(define stdscr (initscr)) ; Start curses
+
+ ;; We don't want any nasty kernel messages damaging our beautifully
+ ;; crafted display.
+ (system* "dmesg" "--console-off")
+
(cbreak!) ; Line buffering disabled
(keypad! stdscr #t) ; Check for function keys
(noecho!)
- branch wip-installer updated (d654694 -> d5eb580), John Darrington, 2016/12/31
- 03/21: installer: Add inetutils bin directory to PATH., John Darrington, 2016/12/31
- 05/21: installer: Enable scrolling in the installation window., John Darrington, 2016/12/31
- 06/21: installer: Wrap installer in (catch #t ...), John Darrington, 2016/12/31
- 16/21: installer: Prevent the user specifying the same mount point twice., John Darrington, 2016/12/31
- 04/21: installer: Turn off kernel ring messages to console.,
John Darrington <=
- 01/21: installer: Add wireless-tools bin directory to PATH., John Darrington, 2016/12/31
- 02/21: installer: Replace an instance of cdr with match., John Darrington, 2016/12/31
- 12/21: installer: Close unused ports in pipe-cmd., John Darrington, 2016/12/31
- 08/21: installer: Use consistent window heights., John Darrington, 2016/12/31
- 20/21: installer: Do not use /tmp for holding the configuration., John Darrington, 2016/12/31
- 14/21: installer: Issue message to user on failure of filesystems task., John Darrington, 2016/12/31
- 07/21: installer: Rename module "new" to "guixsd-installer"., John Darrington, 2016/12/31
- 13/21: installer: Replace spawned mount command with the mount syscall., John Darrington, 2016/12/31
- 11/21: installer: Improve install page., John Darrington, 2016/12/31
- 10/21: installer: Replace "%temporary-configuration-file-port" with "config-file"., John Darrington, 2016/12/31