diff options
author | jake <jake@FreeBSD.org> | 2003-01-27 04:42:17 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2003-01-27 04:42:17 +0000 |
commit | a658a1d50873bfc0f02034889e3d0c50a8055911 (patch) | |
tree | 0462754d272e7fb19097d3f519dfc0f30bfcee72 /etc | |
parent | cf3eae441319bcd9a0b2f9731a1ef429a2b09365 (diff) | |
download | FreeBSD-src-a658a1d50873bfc0f02034889e3d0c50a8055911.zip FreeBSD-src-a658a1d50873bfc0f02034889e3d0c50a8055911.tar.gz |
Change ofwcons to use the output-device property from the firmware for the
name of the device that it creates. Update /etc/ttys accordingly.
An alias is created for the old name so that old /etc/ttys will continue to
work, but due to aliases being implemented as symlinks in devfs you cannot
login as root when using the alias device.
Discussed with: grehan
Diffstat (limited to 'etc')
-rw-r--r-- | etc/etc.sparc64/ttys | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/etc.sparc64/ttys b/etc/etc.sparc64/ttys index b0e53e0..6e5c537 100644 --- a/etc/etc.sparc64/ttys +++ b/etc/etc.sparc64/ttys @@ -31,8 +31,10 @@ # If console is marked "insecure", then init will ask for the root password # when going to single-user mode. console none unknown off secure -# Openfirmware console -ofwcons "/usr/libexec/getty std.9600" vt100 on secure +# +screen "/usr/libexec/getty Pc" cons25 on secure +ttya "/usr/libexec/getty 3wire.9600" cons25 on secure +ttyb "/usr/libexec/getty 3wire.9600" cons25 off secure # #ttyv0 "/usr/libexec/getty Pc" cons25 on secure # Virtual terminals @@ -46,8 +48,6 @@ ofwcons "/usr/libexec/getty std.9600" vt100 on secure #ttyv8 "/usr/X11R6/bin/xdm -nodaemon" xterm off secure # Serial terminals # The 'dialup' keyword identifies dialin lines to login, fingerd etc. -ttya "/usr/libexec/getty local.9600" dialup off secure -ttyb "/usr/libexec/getty local.9600" dialup off secure ttyd0 "/usr/libexec/getty std.9600" dialup off secure ttyd1 "/usr/libexec/getty std.9600" dialup off secure ttyd2 "/usr/libexec/getty std.9600" dialup off secure |