Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(449)

Side by Side Diff: tty2.conf

Issue 6858004: Disable screen blanking and powersave on VT2 for factory (Closed) Base URL: ssh://gitrw.chromium.org:9222/init.git@master
Patch Set: comment and todo Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 start on runlevel [2] 5 start on runlevel [2]
6 stop on runlevel [!2] 6 stop on runlevel [!2]
7 7
8 respawn 8 respawn
9 exec /sbin/agetty 38400 tty2 linux 9 exec /sbin/agetty 38400 tty2 linux
10
11 post-start script
12 # Disable screen blanking and powering down for dev & factory.
13 # TODO(tbroch) If X is running and DPMS is enabled it still blanks VT2.
14 # Investigate possibility of tying these different code paths together.
15 printf "\033[9;0]" > /dev/console
16 printf "\033[14;0]" > /dev/console
17 end script
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698