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

Make the syslog ring-buffer size configurable (#3204)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10557 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2008-03-07 10:44:13 +00:00
parent 699d63d8be
commit 72dff34c99

View File

@ -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
}