projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
ramips: rt305x: add support for the DIR-600 B1,B2 boards
[openwrt.git]
/
package
/
base-files
/
files
/
etc
/
init.d
/
boot
diff --git
a/package/base-files/files/etc/init.d/boot
b/package/base-files/files/etc/init.d/boot
index
c3019df
..
2fec48c
100755
(executable)
--- a/
package/base-files/files/etc/init.d/boot
+++ b/
package/base-files/files/etc/init.d/boot
@@
-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
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
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
fi
fi
config_get klogconloglevel "$cfg" klogconloglevel
@@
-80,6
+84,11
@@
start() {
}
load_modules /etc/modules.d/*
}
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() {
}
stop() {
This page took
0.023434 seconds
and
4
git commands to generate.