diff options
author | John Crispin <john@openwrt.org> | 2014-03-18 19:22:38 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-03-18 19:22:38 +0000 |
commit | ca4078c11048fcc729b028dfdb1828268335c5af (patch) | |
tree | 51856de3e2fcb5fb5aa56efbcbe721b1dcf8b092 /package/system/ubox/files | |
parent | 4835ea949f23a71c8f293984e5dee627fe67b781 (diff) | |
download | upstream-ca4078c11048fcc729b028dfdb1828268335c5af.tar.gz upstream-ca4078c11048fcc729b028dfdb1828268335c5af.tar.bz2 upstream-ca4078c11048fcc729b028dfdb1828268335c5af.zip |
ubox: update to latest git head
logread now shows the right time.
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39951
Diffstat (limited to 'package/system/ubox/files')
-rw-r--r-- | package/system/ubox/files/log.init | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package/system/ubox/files/log.init b/package/system/ubox/files/log.init index ca29fd882c..e11a74b572 100644 --- a/package/system/ubox/files/log.init +++ b/package/system/ubox/files/log.init @@ -24,14 +24,17 @@ validate_log_section() validate_log_daemon() { uci_validate_section system system "${1}" \ - 'log_buffer_size:uinteger:16' + 'log_size:uinteger:0' \ + 'log_buffer_size:uinteger:0' return $? } start_service_daemon() { - local log_buffer_size + local log_buffer_size log_size validate_log_daemon "${1}" + [ $log_buffer_size -eq 0 -a $log_size -gt 0 ] && log_buffer_size=$log_size + [ $log_buffer_size -eq 0 ] && log_buffer_size=16 procd_open_instance procd_set_param command "/sbin/logd" procd_append_param command -S "${log_buffer_size}" |