add missing include in restart
[openwrt.git] / package / base-files / files / etc / init.d / boot
index c0b6192..5f5ca99 100755 (executable)
@@ -14,7 +14,8 @@ system_config() {
        [ -n "$conloglevel" ] && dmesg -n "$conloglevel"
 
        config_get log_ip "$cfg" log_ip 
-       syslogd -C16 ${log_ip:+-L -R $log_ip}
+       config_get log_size "$cfg" log_size
+       syslogd -C${log_size:-16} ${log_ip:+-L -R $log_ip}
        klogd
 }
 
@@ -36,12 +37,15 @@ start() {
        mkdir -p /var/log
        mkdir -p /var/lock
        mkdir -p /var/state
+       mkdir -p /tmp/.uci
+       chown 0700 /tmp/.uci
        touch /var/log/wtmp
        touch /var/log/lastlog
        ln -sf /tmp/resolv.conf.auto /tmp/resolv.conf
        [ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe
 
-       /sbin/hotplug2 --override --persistent --max-children 1 --no-coldplug &
+       [ -x /sbin/hotplug2 ] && /sbin/hotplug2 --override --persistent \
+                       --max-children 1 --no-coldplug &
 
        # 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.048431 seconds and 4 git commands to generate.