mirror of
https://git.yoctoproject.org/poky
synced 2026-02-12 19:53:03 +01:00
Busybox syslog includes functionality to drop duplicated syslog entries, enable this feature in the defconfig yet disable it by default. Expose configuration of the feature through the syslog-startup.conf file and the syslog init script. (From OE-Core rev: 0afa9a63a83ee128dac522af70e1f823b7d6a6df) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
651 B
Plaintext
14 lines
651 B
Plaintext
# This configuration file is used by the busybox syslog init script,
|
|
# /etc/init.d/syslog[.busybox] to set syslog configuration at start time.
|
|
|
|
DESTINATION=file # log destinations (buffer file remote)
|
|
LOGFILE=/var/log/messages # where to log (file)
|
|
REMOTE=loghost:514 # where to log (syslog remote)
|
|
REDUCE=no # reduce-size logging
|
|
DROPDUPLICATES=no # whether to drop duplicate log entries
|
|
#ROTATESIZE=0 # rotate log if grown beyond X [kByte]
|
|
#ROTATEGENS=3 # keep X generations of rotated logs
|
|
BUFFERSIZE=64 # size of circular buffer [kByte]
|
|
FOREGROUND=no # run in foreground (don't use!)
|
|
#LOGLEVEL=5 # local log level (between 1 and 8)
|