commit: 82eab2c4e4cb5ab7d9fb9a560377f2472cadae2d Author: Rick Farina (Zero_Chaos) <zerochaos <AT> gentoo <DOT> org> AuthorDate: Fri Aug 24 14:54:37 2018 +0000 Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org> CommitDate: Fri Aug 24 14:55:53 2018 +0000 URL: https://gitweb.gentoo.org/proj/livecd-tools.git/commit/?id=82eab2c4
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