Skip to content
Snippets Groups Projects
Commit 2be71756 authored by John Crispin's avatar John Crispin
Browse files

ar71xx: drop procd_init console hack


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

SVN-Revision: 36992
parent 4999ae42
No related branches found
No related tags found
No related merge requests found
define Package/base-files/install-target
rm -f $(1)/etc/config/network
$(if $(CONFIG_PROCD_INIT),rm -f $(1)/etc/uci-defaults/00_inittab-console-fixup)
$(if $(CONFIG_PROCD_INIT),echo "::askconsole:/bin/ash --login" >> $(1)/etc/inittab)
endef
::sysinit:/etc/init.d/rcS S boot
::shutdown:/etc/init.d/rcS K shutdown
::askconsole:/bin/ash --login
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment