From 0afa9a63a83ee128dac522af70e1f823b7d6a6df Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Wed, 11 Jan 2012 11:06:19 -0800 Subject: busybox: enable dropping of duplicates in syslog, off by default 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. Signed-off-by: Joshua Lock --- meta/recipes-core/busybox/files/syslog | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/recipes-core/busybox/files/syslog') diff --git a/meta/recipes-core/busybox/files/syslog b/meta/recipes-core/busybox/files/syslog index deeea8ba65..2944d3d06c 100644 --- a/meta/recipes-core/busybox/files/syslog +++ b/meta/recipes-core/busybox/files/syslog @@ -40,6 +40,9 @@ if [ -f /etc/syslog-startup.conf ]; then if [ "$REDUCE" = "yes" ]; then SYSLOG_ARGS="$SYSLOG_ARGS -S" fi + if [ "$DROPDUPLICATES" = "yes" ]; then + SYSLOG_ARGS="$SYSLOG_ARGS -D" + fi if [ -n "$LOGLEVEL" ]; then SYSLOG_ARGS="$SYSLOG_ARGS -l $LOGLEVEL" fi -- cgit v1.2.3