diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-11 22:48:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-11 22:59:38 +0000 |
commit | b70a10ca3ee4a0add90d387e2c8288e531aaa47c (patch) | |
tree | 025268b89cf3cc56c8c64f91314a26feb7744708 /meta/recipes-core/systemd | |
parent | 7b317cdd1d407942d992ad68c450fc7743ab09f4 (diff) | |
download | poky-b70a10ca3ee4a0add90d387e2c8288e531aaa47c.tar.gz |
systemd-serialgetty: Update to match version in recent systemd
Whilst debugging other issues I noticed this was out of sync with the code
in systemd itself. This brings things back into sync and shouldn't hurt
anything.
(From OE-Core rev: b188bda18690dc1af1cb5d18bb0f3ad40c9a6cc6)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/systemd')
-rw-r--r-- | meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service b/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service index 1c14dfea6a..46c15ed7e7 100644 --- a/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service +++ b/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service | |||
@@ -20,7 +20,7 @@ Before=getty.target | |||
20 | IgnoreOnIsolate=yes | 20 | IgnoreOnIsolate=yes |
21 | 21 | ||
22 | [Service] | 22 | [Service] |
23 | ExecStart=-/sbin/agetty -s %I @BAUDRATE@ vt102 | 23 | ExecStart=-/sbin/agetty --keep-baud %I @BAUDRATE@ $TERM |
24 | Type=idle | 24 | Type=idle |
25 | Restart=always | 25 | Restart=always |
26 | RestartSec=0 | 26 | RestartSec=0 |
@@ -30,7 +30,4 @@ TTYReset=yes | |||
30 | TTYVHangup=yes | 30 | TTYVHangup=yes |
31 | KillMode=process | 31 | KillMode=process |
32 | IgnoreSIGPIPE=no | 32 | IgnoreSIGPIPE=no |
33 | 33 | SendSIGHUP=yes | |
34 | # Some login implementations ignore SIGTERM, so we send SIGHUP | ||
35 | # instead, to ensure that login terminates cleanly. | ||
36 | KillSignal=SIGHUP | ||