aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/base-files/etc/uci-defaults/inittab-console-fixup
blob: 4098b37a71c593bd36f5aeb64ab71d0a8ee27fc5 (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 ttyATH0; do
		grep -qs "console=$cons" /proc/cmdline && {
			enable_console_login $cons
		}
	done
}

inittab_console_fixup

exit 0