diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-02-11 19:14:07 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-02-11 19:14:07 +0000 |
commit | 41f61e86935c2a727422df5a4abfd76a818783f4 (patch) | |
tree | 2350b887db02832dab7f669d208d25971cee9306 /etc | |
parent | 3e65c0cd9c1d210c0d82370949ecaf138d93a954 (diff) |
Allow up to 12 virtual terminals (CTRL-ALT-F1 through CTRL-ALT-F12). Only
6 are enabled by default. After these changes, to enable more you must
change the "option WSDISPLAY_DEFAULTSCREENS" in the kernel config file and
edit /etc/ttys to switch the new ones from 'off' to 'on'.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/etc.i386/MAKEDEV | 5 | ||||
-rw-r--r-- | etc/etc.i386/ttys | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/etc/etc.i386/MAKEDEV b/etc/etc.i386/MAKEDEV index 34585a7f0bf..67ae0e266da 100644 --- a/etc/etc.i386/MAKEDEV +++ b/etc/etc.i386/MAKEDEV @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: MAKEDEV,v 1.87 2001/01/30 00:00:33 aaron Exp $ +# $OpenBSD: MAKEDEV,v 1.88 2001/02/11 19:14:05 aaron Exp $ # $NetBSD: MAKEDEV,v 1.40 1996/03/31 00:50:47 perry Exp $ # # Copyright (c) 1990 The Regents of the University of California. @@ -186,7 +186,8 @@ all) sh $this ttyc0 ttyc1 ttyc2 ttyc3 ttyc4 ttyc5 ttyc6 ttyc7 sh $this mcd0 vnd0 vnd1 lpa0 lpa1 ccd0 ccd1 ccd2 ccd3 sh $this raid0 raid1 raid2 raid3 lpt0 lpt1 lpt2 - sh $this ttyC0 ttyC1 ttyC2 ttyC3 ttyC4 ttyC5 + sh $this ttyC0 ttyC1 ttyC2 ttyC3 ttyC4 ttyC5 ttyC6 ttyC7 ttyC8 ttyC9 + sh $this ttyCa ttyCb sh $this wscons sh $this ipl tun0 tun1 tun2 sh $this bpf0 bpf1 bpf2 bpf3 bpf4 bpf5 bpf6 bpf7 bpf8 bpf9 diff --git a/etc/etc.i386/ttys b/etc/etc.i386/ttys index cb437192792..7f6ed811c2f 100644 --- a/etc/etc.i386/ttys +++ b/etc/etc.i386/ttys @@ -1,5 +1,5 @@ # -# $OpenBSD: ttys,v 1.15 2001/02/08 02:55:43 aaron Exp $ +# $OpenBSD: ttys,v 1.16 2001/02/11 19:14:05 aaron Exp $ # # name getty type status comments # @@ -12,6 +12,10 @@ ttyC4 "/usr/libexec/getty Pc" vt220 off secure ttyC5 "/usr/libexec/getty Pc" vt220 on secure ttyC6 "/usr/libexec/getty Pc" vt220 off secure ttyC7 "/usr/libexec/getty Pc" vt220 off secure +ttyC8 "/usr/libexec/getty Pc" vt220 off secure +ttyC9 "/usr/libexec/getty Pc" vt220 off secure +ttyCa "/usr/libexec/getty Pc" vt220 off secure +ttyCb "/usr/libexec/getty Pc" vt220 off secure tty00 "/usr/libexec/getty std.9600" unknown off tty01 "/usr/libexec/getty std.9600" unknown off tty02 "/usr/libexec/getty std.9600" unknown off |