ar71xx: enable login only on the system console by default
SVN-Revision: 28294
This commit is contained in:
parent
5fc14dfb87
commit
e45d7d7006
2 changed files with 25 additions and 2 deletions
|
@ -1,4 +1,2 @@
|
||||||
::sysinit:/etc/init.d/rcS S boot
|
::sysinit:/etc/init.d/rcS S boot
|
||||||
::shutdown:/etc/init.d/rcS K shutdown
|
::shutdown:/etc/init.d/rcS K shutdown
|
||||||
ttyS0::askfirst:/bin/ash --login
|
|
||||||
ttyATH0::askfirst:/bin/ash --login
|
|
||||||
|
|
25
target/linux/ar71xx/base-files/etc/uci-defaults/inittab-console-fixup
Executable file
25
target/linux/ar71xx/base-files/etc/uci-defaults/inittab-console-fixup
Executable file
|
@ -0,0 +1,25 @@
|
||||||
|
#!/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
|
Loading…
Reference in a new issue