aboutsummaryrefslogtreecommitdiffstats
path: root/packages/busybox
diff options
context:
space:
mode:
authorPaul Sokolovsky <pmiscml@gmail.com>2007-04-23 07:16:51 +0000
committerPaul Sokolovsky <pmiscml@gmail.com>2007-04-23 07:16:51 +0000
commit52855b01f4a1bcebda517c248c94182093079a7d (patch)
treedec21a0bd651eb81c22042d51e602a11d62accfc /packages/busybox
parent300e02974776b68fcb8ad6720f8217bcbbcd0624 (diff)
downloadopenembedded-52855b01f4a1bcebda517c248c94182093079a7d.tar.gz
busybox: Clean up syslog.conf file.
* Typo fixes. * Order options in some logical sequence. * Make clear which option applies to which logging destination. * Remove bogus comments about file log rotation being "incompatible with busybox" (works at least with 1.2.1).
Diffstat (limited to 'packages/busybox')
-rw-r--r--packages/busybox/busybox_1.2.1.bb2
-rw-r--r--packages/busybox/files/syslog.conf14
2 files changed, 8 insertions, 8 deletions
diff --git a/packages/busybox/busybox_1.2.1.bb b/packages/busybox/busybox_1.2.1.bb
index fb26407cd6..34aa5daaa3 100644
--- a/packages/busybox/busybox_1.2.1.bb
+++ b/packages/busybox/busybox_1.2.1.bb
@@ -1,6 +1,6 @@
require busybox.inc
-PR = "r11"
+PR = "r12"
SRC_URI += "file://wget-long-options.patch;patch=1 \
file://df_rootfs.patch;patch=1 \
diff --git a/packages/busybox/files/syslog.conf b/packages/busybox/files/syslog.conf
index d4a0e02f5b..fc7ff8b37a 100644
--- a/packages/busybox/files/syslog.conf
+++ b/packages/busybox/files/syslog.conf
@@ -1,9 +1,9 @@
DESTINATION="buffer" # log destinations (buffer file remote)
-MARKINT=20 # intervall between --mark-- entries
-LOGFILE=/var/log/messages # where to log (file)
-REMOTE=loghost:514 # where to log (syslog remote)
-REDUCE=no # reduce-size logging
-#ROTATESIZE=0 # rotate log if grown beyond X [kByte] (incompatible with busybox)
-#ROTATEGENS=3 # keep X generations of rotated logs (incompatible with busybox)
-BUFFERSIZE=64 # size of circular buffer [kByte]
+MARKINT=20 # interval between --mark-- entries [min]
+REDUCE=no # reduced-size logging
+BUFFERSIZE=64 # buffer: size of circular buffer [kByte]
+LOGFILE=/var/log/messages # file: where to log
+ROTATESIZE=32 # file: rotate log if grown beyond X [kByte] (busybox 1.2+)
+ROTATEGENS=1 # file: keep X generations of rotated logs (busybox 1.2+)
+REMOTE=loghost:514 # remote: where to log
FOREGROUND=no # run in foreground (don't use!)