2
0
forked from Ivasoft/openwrt

ar71xx: drop procd_init console hack

Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 36992
This commit is contained in:
John Crispin
2013-06-21 16:53:11 +00:00
parent 4999ae4236
commit 2be717560a
3 changed files with 1 additions and 31 deletions

View File

@@ -1,27 +0,0 @@
#!/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