summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Ogden <bernie.ogden@linaro.org>2015-10-28 17:00:05 +0000
committerBernard Ogden <bernie.ogden@linaro.org>2015-11-13 12:09:15 +0000
commit0b88b0e0fa7707de3fee1b90846c225cd7e02ad0 (patch)
tree27ffa4c315dbf80117a970b26c79f3d784cee77e
parentcc520df64c7fe84bc691f1e185c2df059db6eb6f (diff)
Automatic login
Available in the Linaro overlays, but this filesystem is to be highly reproducible and so cannot depend on any non-fixed package source. Change-Id: I73dca58447960fbb59f25f023516009d0dd6e6b4
-rw-r--r--jessie-arm64-benchmark/customization/includes.chroot/lib/systemd/system/serial-getty@.service35
1 files changed, 35 insertions, 0 deletions
diff --git a/jessie-arm64-benchmark/customization/includes.chroot/lib/systemd/system/serial-getty@.service b/jessie-arm64-benchmark/customization/includes.chroot/lib/systemd/system/serial-getty@.service
new file mode 100644
index 0000000..4ddbadc
--- /dev/null
+++ b/jessie-arm64-benchmark/customization/includes.chroot/lib/systemd/system/serial-getty@.service
@@ -0,0 +1,35 @@
+# This file is part of systemd.
+#
+# systemd is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as published by
+# the Free Software Foundation; either version 2.1 of the License, or
+# (at your option) any later version.
+
+[Unit]
+Description=Serial Getty on %I
+Documentation=man:agetty(8) man:systemd-getty-generator(8)
+Documentation=http://0pointer.de/blog/projects/serial-console.html
+BindsTo=dev-%i.device
+After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service
+After=rc-local.service
+
+# If additional gettys are spawned during boot then we should make
+# sure that this is synchronized before getty.target, even though
+# getty.target didn't actually pull it in.
+Before=getty.target
+IgnoreOnIsolate=yes
+
+[Service]
+ExecStart=-/sbin/agetty --autologin root --keep-baud 115200,38400,9600 %I $TERM
+Type=idle
+Restart=always
+UtmpIdentifier=%I
+TTYPath=/dev/%I
+TTYReset=yes
+TTYVHangup=yes
+KillMode=process
+IgnoreSIGPIPE=no
+SendSIGHUP=yes
+
+[Install]
+WantedBy=getty.target