Skip to content

Commit a4199f5

Browse files
rtg-canonicalgregkh
authored andcommitted
tty: Disable default console blanking interval
BugLink: http://bugs.launchpad.net/bugs/869017 Console blanking is not enabling DPMS power saving (thereby negating any power-saving benefit), and is simply turning the screen content blank. This means that any crash output is invisible which is unhelpful on a server (virtual or otherwise). Furthermore, CRT burn in concerns should no longer govern the default case. Affected users could always set consoleblank on the kernel command line. Signed-off-by: Tim Gardner <tim.gardner@canonical.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Jiri Slaby <jslaby@suse.com> Cc: Adam Borowski <kilobyte@angband.pl> Cc: Scot Doyle <lkml14@scotdoyle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent b2c663d commit a4199f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/tty/vt/vt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ int console_blanked;
181181

182182
static int vesa_blank_mode; /* 0:none 1:suspendV 2:suspendH 3:powerdown */
183183
static int vesa_off_interval;
184-
static int blankinterval = 10*60;
184+
static int blankinterval;
185185
core_param(consoleblank, blankinterval, int, 0444);
186186

187187
static DECLARE_WORK(console_work, console_callback);

0 commit comments

Comments
 (0)