Magellan Linux

Annotation of /trunk/systemd/patches/systemd-243-magellan-configurable-getty.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3454 - (hide annotations) (download)
Wed Oct 9 18:07:50 2019 UTC (4 years, 8 months ago) by niro
File size: 2005 byte(s)
-rediffed patch for systemd-243
1 niro 3454 diff -Naur systemd-243/conf.d/getty systemd-243-magellan/conf.d/getty
2     --- systemd-243/conf.d/getty 1970-01-01 01:00:00.000000000 +0100
3     +++ systemd-243-magellan/conf.d/getty 2019-10-09 20:03:20.082964794 +0200
4     @@ -0,0 +1,11 @@
5     +# Getty configuration file
6     +
7     +# Default getty speed
8     +GETTY_SPEED="38400"
9     +
10     +# Getty options like --autologin etc
11     +GETTY_OPTS=""
12     +
13     +# Getty default terminal emulation mode
14     +GETTY_TERM="linux"
15     +
16     diff -Naur systemd-243/meson.build systemd-243-magellan/meson.build
17     --- systemd-243/meson.build 2019-09-03 11:27:19.000000000 +0200
18     +++ systemd-243-magellan/meson.build 2019-10-09 20:04:25.417988175 +0200
19     @@ -158,6 +158,7 @@
20     randomseeddir = join_paths(localstatedir, 'lib/systemd')
21     profiledir = join_paths(rootlibexecdir, 'portable', 'profile')
22     ntpservicelistdir = join_paths(rootprefixdir, 'lib/systemd/ntp-units.d')
23     +gettyconfddir = join_paths(sysconfdir, 'conf.d')
24    
25     docdir = get_option('docdir')
26     if docdir == ''
27     @@ -2929,6 +2930,8 @@
28     install_dir : xinitrcdir)
29     install_data('modprobe.d/systemd.conf',
30     install_dir : modprobedir)
31     +install_data('conf.d/getty',
32     + install_dir : gettyconfddir)
33     install_data('LICENSE.GPL2',
34     'LICENSE.LGPL2.1',
35     'NEWS',
36     diff -Naur systemd-243/units/getty@.service.m4 systemd-243-magellan/units/getty@.service.m4
37     --- systemd-243/units/getty@.service.m4 2019-09-03 11:27:19.000000000 +0200
38     +++ systemd-243-magellan/units/getty@.service.m4 2019-10-09 20:05:43.411822049 +0200
39     @@ -34,11 +34,12 @@
40     ConditionPathExists=/dev/tty0
41    
42     [Service]
43     +EnvironmentFile=-/etc/conf.d/getty
44     # the VT is cleared by TTYVTDisallocate
45     # The '-o' option value tells agetty to replace 'login' arguments with an
46     # option to preserve environment (-p), followed by '--' for safety, and then
47     # the entered username.
48     -ExecStart=-/sbin/agetty -o '-p -- \\u' --noclear %I $TERM
49     +ExecStart=-/sbin/agetty -o '-p -- \\u' --noclear %I $GETTY_SPEED $GETTY_TERM $GETTY_OPTS
50     Type=idle
51     Restart=always
52     RestartSec=0