From 82eab2c4e4cb5ab7d9fb9a560377f2472cadae2d Mon Sep 17 00:00:00 2001 From: "Rick Farina (Zero_Chaos)" Date: Fri, 24 Aug 2018 14:54:37 +0000 Subject: remove redundant agetty settings agetty baud rate doesn't matter on linux vt and is ignored per manual agetty term type is default set to linux on vt per manual thanks to grknight for pointing it out --- init.d/fixinittab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/fixinittab b/init.d/fixinittab index 7123cc0..de3a12f 100644 --- a/init.d/fixinittab +++ b/init.d/fixinittab @@ -86,7 +86,7 @@ start() echo "c1:12345:respawn:/sbin/mingetty --noclear --autologin $(id -nu 1000 2>/dev/null || echo root) tty1" >> /etc/inittab for x in 2 3 4 5 6 do - echo "c${x}:2345:respawn:/sbin/agetty 38400 tty${x} linux" >> /etc/inittab + echo "c${x}:2345:respawn:/sbin/agetty tty${x}" >> /etc/inittab done else for x in 1 2 3 4 5 6 -- cgit v1.2.3-65-gdbad