ramips: rt305x: add support for the DIR-600 B1,B2 boards
[openwrt.git] / package / base-files / files / etc / init.d / boot
index c3019df..2fec48c 100755 (executable)
@@ -27,9 +27,13 @@ system_config() {
                config_get log_type "$cfg" log_type circular
                config_get log_file "$cfg" log_file "/var/log/messages"
                if [ "$log_type" = "file" ]; then
-                       syslogd -s $log_size -O $log_file ${log_ip:+-L -R ${log_ip}:${log_port}} -S
+                       syslogd -s $log_size -O $log_file \
+                               ${log_ip:+-L -R ${log_ip}:${log_port}} \
+                               ${conloglevel:+-l $conloglevel} -S
                else
-                       syslogd -C${log_size} ${log_ip:+-L -R ${log_ip}:${log_port}}
+                       syslogd -C${log_size} \
+                               ${log_ip:+-L -R ${log_ip}:${log_port}} \
+                               ${conloglevel:+-l $conloglevel}
                fi
        fi
        config_get klogconloglevel "$cfg" klogconloglevel
@@ -80,6 +84,11 @@ start() {
        }
 
        load_modules /etc/modules.d/*
+
+       # another round of USB coldplugging to kick devices into operation which lacked drivers before
+       for dev in /sys/bus/usb/devices/*/uevent; do
+               [ -e "$dev" ] && echo -n add > "$dev"
+       done
 }
 
 stop() {
This page took 0.028538 seconds and 4 git commands to generate.