diff options
author | obrien <obrien@FreeBSD.org> | 2001-03-22 22:16:26 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-03-22 22:16:26 +0000 |
commit | eee9cab668b487432cc086947e228ad81ea24422 (patch) | |
tree | 0ba70e6006e7ad5534c174e26aa74ec8b9dd699c | |
parent | 499950992e738a63e25fae749a552f7c2be960c5 (diff) | |
download | FreeBSD-src-eee9cab668b487432cc086947e228ad81ea24422.zip FreeBSD-src-eee9cab668b487432cc086947e228ad81ea24422.tar.gz |
Revert rev 1.7 which used "`console' rather than `ttyv0' so there will
always be a getty on the console reguardless of the type of console.
Instead always run a getty on ttyd0.
Reviewed by: gallatin
-rw-r--r-- | etc/etc.alpha/ttys | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/etc.alpha/ttys b/etc/etc.alpha/ttys index 25088f3..a574070 100644 --- a/etc/etc.alpha/ttys +++ b/etc/etc.alpha/ttys @@ -28,8 +28,9 @@ # # If console is marked "insecure", then init will ask for the root password # when going to single-user mode. +console none unknown off secure # -console "/usr/libexec/getty Pc" cons25 on secure +ttyv0 "/usr/libexec/getty Pc" cons25 on secure # Virtual terminals ttyv1 "/usr/libexec/getty Pc" cons25 on secure ttyv2 "/usr/libexec/getty Pc" cons25 on secure @@ -41,7 +42,7 @@ ttyv7 "/usr/libexec/getty Pc" cons25 on secure ttyv8 "/usr/X11R6/bin/xdm -nodaemon" xterm off secure # Serial terminals # The 'dialup' keyword identifies dialin lines to login, fingerd etc. -ttyd0 "/usr/libexec/getty std.9600" dialup off secure +ttyd0 "/usr/libexec/getty std.9600" vt100 on secure ttyd1 "/usr/libexec/getty std.9600" dialup off secure ttyd2 "/usr/libexec/getty std.9600" dialup off secure ttyd3 "/usr/libexec/getty std.9600" dialup off secure |