From 1e859b1df3ba554c2eae7fc54d6e4be7bf73027e Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 10 Nov 2017 21:39:18 +0000 Subject: [PATCH] init: actually set the tty parameters! --- Applications/util/init.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Applications/util/init.c b/Applications/util/init.c index 22ea1179..9935575b 100644 --- a/Applications/util/init.c +++ b/Applications/util/init.c @@ -796,6 +796,8 @@ static pid_t getty(const char **argv, const char *id) than ulongs! */ tref.c_cflag |= baudmatch(argv[1]); + tcsetattr(fdtty, TCSANOW, &tref); + /* make stdin, stdout and stderr point to fdtty */ dup(fdtty); -- 2.34.1