remove leftover CONFIG_JLEVEL
[openwrt.git] / package / base-files / files / etc / init.d / boot
index e586704..aff47cf 100755 (executable)
@@ -9,6 +9,13 @@ system_config() {
        
        config_get hostname "$cfg" hostname
        echo "${hostname:-OpenWrt}" > /proc/sys/kernel/hostname
+
+       config_get conloglevel "$cfg" conloglevel
+       [ -n "$conloglevel" ] && dmesg -n "$conloglevel"
+
+       config_get log_ip "$cfg" log_ip 
+       syslogd -C16 ${log_ip:+-L -R $log_ip}
+       klogd
 }
 
 apply_uci_config() {(
@@ -28,12 +35,13 @@ start() {
        mkdir -p /var/run
        mkdir -p /var/log
        mkdir -p /var/lock
+       mkdir -p /var/state
        touch /var/log/wtmp
        touch /var/log/lastlog
-       ln -s /tmp/resolv.conf.auto /tmp/resolv.conf
+       ln -sf /tmp/resolv.conf.auto /tmp/resolv.conf
        [ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe
-       
-       /sbin/hotplug2 --persistent --max-children 1 &
+
+       /sbin/hotplug2 --override --persistent --max-children 1 &
 
        # the coldplugging of network interfaces needs to happen later, so we do it manually here
        for iface in $(awk -F: '/:/ {print $1}' /proc/net/dev); do
This page took 0.021611 seconds and 4 git commands to generate.