diff options
author | Rob Landley | 2006-08-24 20:00:44 +0000 |
---|---|---|
committer | Rob Landley | 2006-08-24 20:00:44 +0000 |
commit | f78ab5396d57512fdada5c7ad6fc917d9a88c52a (patch) | |
tree | da3228bfa2f973100799ac1070ec3cfb33d9145a | |
parent | 4b5827a69b85dbd931d989ac2a652348e59d876c (diff) | |
download | busybox-f78ab5396d57512fdada5c7ad6fc917d9a88c52a.zip busybox-f78ab5396d57512fdada5c7ad6fc917d9a88c52a.tar.gz |
Antti Seppala (with dots over the last two a's) wants our getty to initialize
the terminal the way mingetty does instead of the way agetty does. It's
a bit ugly for somebody else to be writing to a console sitting at a
login: prompt, but it's uglier when newline doesn't work as expected if
they do.
-rw-r--r-- | loginutils/getty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/loginutils/getty.c b/loginutils/getty.c index ebb107d..3da7c56 100644 --- a/loginutils/getty.c +++ b/loginutils/getty.c @@ -474,7 +474,8 @@ static void termio_init(struct termio *tp, int speed, struct options *op) tp->c_cflag |= CLOCAL; } - tp->c_iflag = tp->c_lflag = tp->c_oflag = tp->c_line = 0; + tp->c_iflag = tp->c_lflag = tp->c_line = 0; + tp->c_oflag = OPOST | ONLCR; tp->c_cc[VMIN] = 1; tp->c_cc[VTIME] = 0; |