diff options
author | Awais Belal <awais_belal@mentor.com> | 2016-04-11 00:29:14 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-11 22:01:54 +0100 |
commit | 4e9d7fc44a1fcefe15dd66905ae0dbbc7dc1ca9d (patch) | |
tree | fd99d60a57ee02a0552308c59234f0d7e1c8ce61 /meta | |
parent | 90dcc9838e5be74f5ec7a8380cf6da3bddb1c955 (diff) | |
download | openembedded-core-4e9d7fc44a1fcefe15dd66905ae0dbbc7dc1ca9d.tar.gz openembedded-core-4e9d7fc44a1fcefe15dd66905ae0dbbc7dc1ca9d.tar.bz2 openembedded-core-4e9d7fc44a1fcefe15dd66905ae0dbbc7dc1ca9d.zip |
systemd-serialgetty: allow baud rate overriding
In case a getty is required on a UART which is not being
used as the kernel console, the current agetty invocation
fails to obey the baud rate configured through the
SERIAL_CONSOLES variable because it uses --keep-baud.
(From OE-Core master rev: b54b73834e73d55de1038b55d0a4d7f49cda52d0)
Signed-off-by: Awais Belal <awais_belal@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service b/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service index 182167befe..e8b027e97d 100644 --- a/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service +++ b/meta/recipes-core/systemd/systemd-serialgetty/serial-getty@.service @@ -21,7 +21,7 @@ IgnoreOnIsolate=yes [Service] Environment="TERM=xterm" -ExecStart=-/sbin/agetty -8 -L --keep-baud %I @BAUDRATE@ $TERM +ExecStart=-/sbin/agetty -8 -L %I @BAUDRATE@ $TERM Type=idle Restart=always RestartSec=0 |