You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
419 B
28 lines
419 B
13 years ago
|
#!/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
|
||
13 years ago
|
|
||
|
exit 0
|