1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 07:28:26 +03:00

move syslogd and klogd to init.di/boot script, add remote logging support

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7160 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mbm 2007-05-10 09:29:55 +00:00
parent 2e59ffe7de
commit e26af005b5
2 changed files with 4 additions and 9 deletions

View File

@ -9,6 +9,10 @@ system_config() {
config_get hostname "$cfg" hostname
echo "${hostname:-OpenWrt}" > /proc/sys/kernel/hostname
config_get log_ip "$cfg" log_ip
syslogd -C16 ${log_ip:+-L -R $log_ip}
klogd
}
apply_uci_config() {(

View File

@ -1,15 +1,6 @@
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
${FAILSAFE:+exit}
# FIXME: add logging configuration
#[ -f /etc/config/network ] && . /etc/config/network
#eval $(ipcalc "$log_ipaddr")
#[ "$log_ipaddr" = "$IP" ] || log_ipaddr=""
syslogd -C16 #${log_ipaddr:+-L -R $log_ipaddr}
klogd
(
for i in /etc/rc.d/S*; do
$i boot 2>&1