summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-core/systemd/systemd-serialgetty.bb7
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 @@
1SUMMARY = "Serial terminal support for systemd" 1SUMMARY = "Serial terminal support for systemd (using SERIAL_CONSOLES)"
2HOMEPAGE = "https://www.freedesktop.org/wiki/Software/systemd/" 2HOMEPAGE = "https://www.freedesktop.org/wiki/Software/systemd/"
3LICENSE = "GPL-2.0-or-later" 3LICENSE = "GPL-2.0-or-later"
4LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6" 4LIC_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
7SERIAL_CONSOLES ?= "115200;ttyS0" 12SERIAL_CONSOLES ?= "115200;ttyS0"
8SERIAL_TERM ?= "linux" 13SERIAL_TERM ?= "linux"