* Make sure that kernel log messages appear in the VM output. The

comment was incorrect - when klogd is running, kernel messages no
  longer appear on the serial port.

svn path=/nixos/branches/boot-order/; revision=22346
This commit is contained in:
Eelco Dolstra 2010-06-20 19:22:23 +00:00
parent eab091cc11
commit 593a110c47

View file

@ -74,10 +74,8 @@ in
# `xwininfo' is used by the test driver to query open windows.
environment.systemPackages = [ pkgs.xorg.xwininfo ];
# Send all of /var/log/messages to the serial port (except for
# kernel messages through klogd, which already appear on the
# serial port).
services.syslogd.extraConfig = "*.*,kern.none /dev/ttyS0";
# Send all of /var/log/messages to the serial port.
services.syslogd.extraConfig = "*.* /dev/ttyS0";
# Prevent tests from accessing the Internet.
networking.defaultGateway = mkOverride 200 {} "";