diff -Naur systemd-220/conf.d/getty systemd-220-magellan/conf.d/getty --- systemd-220/conf.d/getty 1970-01-01 01:00:00.000000000 +0100 +++ systemd-220-magellan/conf.d/getty 2015-06-18 13:45:56.271521478 +0200 @@ -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-220/Makefile.am systemd-220-magellan/Makefile.am --- systemd-220/Makefile.am 2015-05-21 21:59:24.642950775 +0200 +++ systemd-220-magellan/Makefile.am 2015-06-18 13:47:13.025729019 +0200 @@ -3762,6 +3762,10 @@ dist_udevconf_DATA = \ src/udev/udev.conf +gettyconfddir = $(sysconfdir)/conf.d +dist_gettyconfd_DATA = \ + conf.d/getty + pkgconfigdata_DATA += \ src/udev/udev.pc diff -Naur systemd-220/units/getty@.service.m4 systemd-220-magellan/units/getty@.service.m4 --- systemd-220/units/getty@.service.m4 2015-04-23 16:56:35.582220112 +0200 +++ systemd-220-magellan/units/getty@.service.m4 2015-06-18 13:48:35.445877872 +0200 @@ -26,8 +26,9 @@ ConditionPathExists=/dev/tty0 [Service] +EnvironmentFile=-/etc/conf.d/getty # the VT is cleared by TTYVTDisallocate -ExecStart=-/sbin/agetty --noclear %I $TERM +ExecStart=-/sbin/agetty --noclear %I $GETTY_SPEED $GETTY_TERM $GETTY_OPTS Type=idle Restart=always RestartSec=0