[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
40/197: installer: Turn off kernel ring messages to console.
From: |
Danny Milosavljevic |
Subject: |
40/197: installer: Turn off kernel ring messages to console. |
Date: |
Mon, 3 Jul 2017 20:36:57 -0400 (EDT) |
dannym pushed a commit to branch wip-installer-2
in repository guix.
commit 074bdfb1b42989ad09dc7eb52f89fe3f2069e664
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!)
- 20/197: installer: Return slurped lines in their correct order., (continued)
- 20/197: installer: Return slurped lines in their correct order., Danny Milosavljevic, 2017/07/03
- 25/197: installer: Connect ethernet interfaces on selection., Danny Milosavljevic, 2017/07/03
- 03/197: installer: Remove obsolete procedures/variables, Danny Milosavljevic, 2017/07/03
- 10/197: installer: Perform a task's dependencies prior to the task itself., Danny Milosavljevic, 2017/07/03
- 22/197: installer: Make "interfaces" return an alist., Danny Milosavljevic, 2017/07/03
- 26/197: installer: Let the kernel know about (possibly) changed partitions., Danny Milosavljevic, 2017/07/03
- 27/197: installer: Deal with partition tables which are (partially) corrupt., Danny Milosavljevic, 2017/07/03
- 28/197: installer: Add a variable to represent the minimum recommended store size., Danny Milosavljevic, 2017/07/03
- 32/197: installer: Remove ad-hoc completed predicate and use standard one., Danny Milosavljevic, 2017/07/03
- 34/197: installer: Replace some instances of "car"., Danny Milosavljevic, 2017/07/03
- 40/197: installer: Turn off kernel ring messages to console.,
Danny Milosavljevic <=
- 37/197: install: Define new procedure pipe-cmd and use it to implement window-pipe., Danny Milosavljevic, 2017/07/03
- 41/197: installer: Enable scrolling in the installation window., Danny Milosavljevic, 2017/07/03
- 38/197: installer: Correct bugs generating the configuration., Danny Milosavljevic, 2017/07/03
- 45/197: installer: Fix bug where window-pipe did not return the proper exit status., Danny Milosavljevic, 2017/07/03
- 43/197: installer: Rename module "new" to "guixsd-installer"., Danny Milosavljevic, 2017/07/03
- 42/197: installer: Wrap installer in (catch #t ...), Danny Milosavljevic, 2017/07/03
- 48/197: installer: Close unused ports in pipe-cmd., Danny Milosavljevic, 2017/07/03
- 47/197: installer: Improve install page., Danny Milosavljevic, 2017/07/03
- 29/197: installer: Add a task to actually call guix system init., Danny Milosavljevic, 2017/07/03
- 53/197: installer: Change N_ from a procedure to a macro., Danny Milosavljevic, 2017/07/03