summaryrefslogtreecommitdiffstats
path: root/target/linux/mpc85xx/base-files/etc/uci-defaults/00_inittab-console-fixup
blob: 9d7b2aea2239ca70736a72cf0d74040f5761ade1 (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
#!/bin/sh
#
# Copyright (C) 2011 OpenWrt.org
#

enable_console_login() {
	local cons=$1
	local initline="$cons::askfirst:/bin/ash --login"

	grep -qs "^$initline" /etc/inittab || {
		echo "$initline" >> /etc/inittab
		sync
		kill -HUP 1
	}
}

inittab_console_fixup() {
	for cons in ttyS0 ttyS1; do
		grep -qs "console=$cons" /proc/cmdline && {
			enable_console_login $cons
		}
	done
}

inittab_console_fixup

exit 0