diff options
author | Ross Burton <ross.burton@arm.com> | 2025-01-30 17:59:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-05 12:49:55 +0000 |
commit | a86627cffa8a6c1e196d85d8db869c2c3d48e1ce (patch) | |
tree | d2d2df07247e7df4d6355e5e9f2bef5eff3fb016 /meta/recipes-core | |
parent | ff1303ed467b79cc9c1bf9dcbe0159356451bb7d (diff) | |
download | poky-a86627cffa8a6c1e196d85d8db869c2c3d48e1ce.tar.gz |
systemd-serialgetty: add comments explaining use
Add some comments to clarify exactly what this recipe is for.
(From OE-Core rev: bbaafe11189b4b14ab84576e5eddd709b7f0ef1b)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/systemd/systemd-serialgetty.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-core/systemd/systemd-serialgetty.bb b/meta/recipes-core/systemd/systemd-serialgetty.bb index 9035b8c335..7b525b10f0 100644 --- a/meta/recipes-core/systemd/systemd-serialgetty.bb +++ b/meta/recipes-core/systemd/systemd-serialgetty.bb | |||
@@ -1,8 +1,13 @@ | |||
1 | SUMMARY = "Serial terminal support for systemd" | 1 | SUMMARY = "Serial terminal support for systemd (using SERIAL_CONSOLES)" |
2 | HOMEPAGE = "https://www.freedesktop.org/wiki/Software/systemd/" | 2 | HOMEPAGE = "https://www.freedesktop.org/wiki/Software/systemd/" |
3 | LICENSE = "GPL-2.0-or-later" | 3 | LICENSE = "GPL-2.0-or-later" |
4 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6" | 4 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6" |
5 | 5 | ||
6 | # Note that this recipe explicitly creates a serial-getty@ service for every tty | ||
7 | # in SERIAL_CONSOLES. This is typically not always needed with systemd as it | ||
8 | # will probe at boot and generate getty instances for any active consoles as | ||
9 | # required. This recipe (enabled via disabling serial-getty-generator in systemd) | ||
10 | # should only be used if the generator is not appropriate. | ||
6 | 11 | ||
7 | SERIAL_CONSOLES ?= "115200;ttyS0" | 12 | SERIAL_CONSOLES ?= "115200;ttyS0" |
8 | SERIAL_TERM ?= "linux" | 13 | SERIAL_TERM ?= "linux" |