diff -Naur systemd-206/conf.d/getty systemd-206-magellan/conf.d/getty --- systemd-206/conf.d/getty 1970-01-01 00:00:00.000000000 +0000 +++ systemd-206-magellan/conf.d/getty 2013-08-06 15:37:40.188000000 +0000 @@ -0,0 +1,11 @@ +# Getty configuration file + +# Default getty speed +GETTY_SPEED="38400" + +# Getty options like --autologin etc +GETTY_OPTS="" + +# Getty default terminal emulation mode +GETTY_TERM="linux" + diff -Naur systemd-206/Makefile.am systemd-206-magellan/Makefile.am --- systemd-206/Makefile.am 2013-07-22 23:12:18.483072182 +0000 +++ systemd-206-magellan/Makefile.am 2013-08-06 15:38:25.351000000 +0000 @@ -2164,6 +2164,10 @@ dist_udevconf_DATA = \ src/udev/udev.conf +gettyconfddir = $(sysconfdir)/conf.d +dist_gettyconfd_DATA = \ + conf.d/getty + sharepkgconfigdir = $(datadir)/pkgconfig sharepkgconfig_DATA = \ src/udev/udev.pc diff -Naur systemd-206/units/getty@.service.m4 systemd-206-magellan/units/getty@.service.m4 --- systemd-206/units/getty@.service.m4 2013-07-21 22:43:28.197182747 +0000 +++ systemd-206-magellan/units/getty@.service.m4 2013-08-06 15:40:28.365000000 +0000 @@ -26,8 +26,9 @@ ConditionPathExists=/dev/tty0 [Service] +EnvironmentFile=-/etc/conf.d/getty # the VT is cleared by TTYVTDisallocate -ExecStart=-/sbin/agetty --noclear %I +ExecStart=-/sbin/agetty --noclear %I $GETTY_SPEED $GETTY_TERM $GETTY_OPTS Type=idle Restart=always RestartSec=0