mpc85xx: Remove inittab workaround
The default inittab uses "askconsole" which is implemented by procd and uses the console provided by the kernel command line. Hence, this platform specific workaround is not necessary anymore. Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 39367
This commit is contained in:
parent
eceea6d6e1
commit
30af45d19a
2 changed files with 0 additions and 29 deletions
|
@ -1,2 +0,0 @@
|
|||
::sysinit:/etc/init.d/rcS S boot
|
||||
::shutdown:/etc/init.d/rcS K shutdown
|
|
@ -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 ttyS1; do
|
||||
grep -qs "console=$cons" /proc/cmdline && {
|
||||
enable_console_login $cons
|
||||
}
|
||||
done
|
||||
}
|
||||
|
||||
inittab_console_fixup
|
||||
|
||||
exit 0
|
Loading…
Reference in a new issue