1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 04:06:20 +03:00

fix startup logging

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@863 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mbm 2005-05-13 00:37:19 +00:00
parent 8561def699
commit a702c2ea6f
3 changed files with 7 additions and 10 deletions

View File

@ -1,6 +1,4 @@
#!/bin/sh
klogd
syslogd -C 16
echo "S" > /proc/jffs2_bbc
mkdir -p /var/run
@ -25,18 +23,18 @@ touch /var/log/lastlog
}
}
cat /etc/modules /etc/modules.d/* | sed 's/^[^#]/insmod &/' 2>&-|ash
cat /etc/modules /etc/modules.d/*|sed 's/^[^#]/insmod &/' 2>&-|ash
ifconfig lo 127.0.0.1 up
ifconfig eth0 promisc
HOSTNAME=$(nvram get wan_hostname)
HOSTNAME=${HOSTNAME%%.*}
echo ${HOSTNAME:=OpenWrt} > /proc/sys/kernel/hostname
echo ${HOSTNAME:=OpenWrt}>/proc/sys/kernel/hostname
vconfig set_name_type VLAN_PLUS_VID_NO_PAD
# automagically run firstboot
[ -z "$FAILSAFE" ] && {
{ mount | grep jffs2 1>&-; } || firstboot
{ mount|grep jffs2 1>&-; } || firstboot
}

View File

@ -1,7 +1,6 @@
#!/bin/sh
# Start all init scripts in /etc/init.d
# executing them in numerical order.
#
syslogd -C 16
klogd
for i in /etc/init.d/S* ;do
[ -f "$i" ] && $i start
$i start 2>&1 | logger -s -p 6 -t ''
done

View File

@ -1,3 +1,3 @@
::sysinit:/etc/init.d/rcS 2>&1 | logger -p 6 -t '' -s
::sysinit:/etc/init.d/rcS
::shutdown:/sbin/halt
tts/0::askfirst:/bin/ash --login