summaryrefslogtreecommitdiff
path: root/data/live-build-config/hooks/05-event_tty.chroot
diff options
context:
space:
mode:
authorKim Hagen <kim.sidney@gmail.com>2016-02-03 03:22:23 -0500
committerKim Hagen <kim.sidney@gmail.com>2016-02-03 03:22:23 -0500
commitdbf2854bb2ab4006792d1dfefc6021657f99b034 (patch)
tree6a794e4dc0d0ed39101061b05d6e392513dfa171 /data/live-build-config/hooks/05-event_tty.chroot
parent8c29337415ae9f39b291fd8e4f85d35916fc4705 (diff)
downloadvyos-build-dbf2854bb2ab4006792d1dfefc6021657f99b034.tar.gz
vyos-build-dbf2854bb2ab4006792d1dfefc6021657f99b034.zip
Add hooks or live-build.
Diffstat (limited to 'data/live-build-config/hooks/05-event_tty.chroot')
-rwxr-xr-xdata/live-build-config/hooks/05-event_tty.chroot34
1 files changed, 34 insertions, 0 deletions
diff --git a/data/live-build-config/hooks/05-event_tty.chroot b/data/live-build-config/hooks/05-event_tty.chroot
new file mode 100755
index 00000000..a00167f7
--- /dev/null
+++ b/data/live-build-config/hooks/05-event_tty.chroot
@@ -0,0 +1,34 @@
+#!/bin/sh
+
+if [ -r etc/event.d/tty1 ] ; then
+ echo I: Delay getty until rcX completes
+ sed -i 's/start on runlevel /start on stopped rc/' \
+ etc/event.d/tty[1-6]
+ if [ ! -r etc/event.d/ttyS0 ] && [ -c dev/ttyS0 ] ; then
+ echo I: Enable serial console login
+ cat <<-EOF > etc/event.d/ttyS0
+ # ttyS0 - getty
+ #
+ # This service maintains a getty on ttyS0 from the point the system is
+ # started until it is shut down again.
+
+ start on stopped rc2
+ start on stopped rc3
+ start on stopped rc4
+ start on stopped rc5
+
+ stop on runlevel 0
+ stop on runlevel 1
+ stop on runlevel 6
+
+ respawn
+ exec /sbin/getty 9600 ttyS0 vt100
+
+ EOF
+ fi
+fi
+
+if [ -r etc/inittab ] && [ -c dev/ttyS0 ] && grep -q '^#T0:.*getty.*ttyS0' etc/inittab ; then
+ echo I: Enable serial console login
+ sed -i '/^#T0:/s|^#.*$|T0:23:respawn:/sbin/getty -L ttyS0 9600 vt100|' etc/inittab
+fi