diff -Naur systemd-197/Makefile.am systemd-197-magellan/Makefile.am --- systemd-197/Makefile.am 2013-01-08 01:37:15.391966148 +0000 +++ systemd-197-magellan/Makefile.am 2013-01-24 18:32:55.123966009 +0000 @@ -3990,6 +3990,8 @@ ( cd $(DESTDIR)$(sysconfdir)/xdg/systemd/ && \ rm -f user && \ $(LN_S) $(pkgsysconfdir)/user user ) + $(MKDIR_P) -m0755 $(DESTDIR)$(sysconfdir)/conf.d + install -m0644 $(top_srcdir)/src/getty.confd $(DESTDIR)$(sysconfdir)/conf.d/getty ( cd $(DESTDIR)$(systemunitdir)/sockets.target.wants && \ rm -f systemd-initctl.socket systemd-shutdownd.socket && \ $(LN_S) ../systemd-initctl.socket systemd-initctl.socket && \ diff -Naur systemd-197/Makefile.in systemd-197-magellan/Makefile.in --- systemd-197/Makefile.in 2013-01-08 01:38:12.204181593 +0000 +++ systemd-197-magellan/Makefile.in 2013-01-24 18:37:29.560981392 +0000 @@ -11334,6 +11334,8 @@ $(DESTDIR)$(pkgsysconfdir)/user \ $(DESTDIR)$(dbussessionservicedir) \ $(DESTDIR)$(sysconfdir)/xdg/systemd + $(MKDIR_P) -m0755 $(DESTDIR)$(sysconfdir)/conf.d + install -m0644 $(top_srcdir)/src/getty.confd $(DESTDIR)$(sysconfdir)/conf.d/getty ( cd $(DESTDIR)$(sysconfdir)/xdg/systemd/ && \ rm -f user && \ $(LN_S) $(pkgsysconfdir)/user user ) diff -Naur systemd-197/src/getty.confd systemd-197-magellan/src/getty.confd --- systemd-197/src/getty.confd 1970-01-01 00:00:00.000000000 +0000 +++ systemd-197-magellan/src/getty.confd 2013-01-24 18:33:10.778966706 +0000 @@ -0,0 +1,7 @@ +# Getty configuration file + +# Default getty speed +GETTY_SPEED="38400" + +# Getty options like --autologin etc +GETTY_OPTS="" diff -Naur systemd-197/units/getty@.service.m4 systemd-197-magellan/units/getty@.service.m4 --- systemd-197/units/getty@.service.m4 2013-01-07 21:50:49.083315575 +0000 +++ systemd-197-magellan/units/getty@.service.m4 2013-01-24 18:39:38.832989285 +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 38400 linux +ExecStart=-/sbin/agetty --noclear %I $GETTY_SPEED linux $GETTY_OPTS Type=idle Restart=always RestartSec=0