blob: a00167f7de5764aee60db6567e3ca2b596f55cf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
|