diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service b/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service index 15af16a9f8..542b905795 100644 --- a/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service +++ b/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service | |||
@@ -1,3 +1,5 @@ | |||
1 | # SPDX-License-Identifier: LGPL-2.1+ | ||
2 | # | ||
1 | # This file is part of systemd. | 3 | # This file is part of systemd. |
2 | # | 4 | # |
3 | # systemd is free software; you can redistribute it and/or modify it | 5 | # systemd is free software; you can redistribute it and/or modify it |
@@ -9,9 +11,8 @@ | |||
9 | Description=Serial Getty on %I | 11 | Description=Serial Getty on %I |
10 | Documentation=man:agetty(8) man:systemd-getty-generator(8) | 12 | Documentation=man:agetty(8) man:systemd-getty-generator(8) |
11 | Documentation=http://0pointer.de/blog/projects/serial-console.html | 13 | Documentation=http://0pointer.de/blog/projects/serial-console.html |
12 | PartOf=dev-%i.device | 14 | BindsTo=dev-%i.device |
13 | ConditionPathExists=/dev/%i | 15 | After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service getty-pre.target |
14 | After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service | ||
15 | After=rc-local.service | 16 | After=rc-local.service |
16 | 17 | ||
17 | # If additional gettys are spawned during boot then we should make | 18 | # If additional gettys are spawned during boot then we should make |
@@ -20,12 +21,17 @@ After=rc-local.service | |||
20 | Before=getty.target | 21 | Before=getty.target |
21 | IgnoreOnIsolate=yes | 22 | IgnoreOnIsolate=yes |
22 | 23 | ||
24 | # IgnoreOnIsolate causes issues with sulogin, if someone isolates | ||
25 | # rescue.target or starts rescue.service from multi-user.target or | ||
26 | # graphical.target. | ||
27 | Conflicts=rescue.service | ||
28 | Before=rescue.service | ||
29 | |||
23 | [Service] | 30 | [Service] |
24 | Environment="TERM=xterm" | 31 | Environment="TERM=xterm" |
25 | ExecStart=-/sbin/agetty -8 -L %I @BAUDRATE@ $TERM | 32 | ExecStart=-/sbin/agetty -8 -L %I @BAUDRATE@ $TERM |
26 | Type=idle | 33 | Type=idle |
27 | Restart=always | 34 | Restart=always |
28 | RestartSec=0 | ||
29 | UtmpIdentifier=%I | 35 | UtmpIdentifier=%I |
30 | TTYPath=/dev/%I | 36 | TTYPath=/dev/%I |
31 | TTYReset=yes | 37 | TTYReset=yes |