Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/sysklogd/Config.in

    r1765 r2725  
     1# DO NOT EDIT. This file is generated from Config.src
    12#
    23# For a description of the syntax of this configuration file,
     
    67menu "System Logging Utilities"
    78
     9
     10
    811config SYSLOGD
    912    bool "syslogd"
    10     default n
     13    default y
    1114    help
    1215      The syslogd utility is used to record logs of all the
    13       significant events that occur on a system.  Every
     16      significant events that occur on a system. Every
    1417      message that is logged records the date and time of the
    1518      event, and will generally also record the name of the
    16       application that generated the message.  When used in
     19      application that generated the message. When used in
    1720      conjunction with klogd, messages from the Linux kernel
    18       can also be recorded.  This is terribly useful,
     21      can also be recorded. This is terribly useful,
    1922      especially for finding what happened when something goes
    20       wrong.  And something almost always will go wrong if
     23      wrong. And something almost always will go wrong if
    2124      you wait long enough....
    2225
    2326config FEATURE_ROTATE_LOGFILE
    2427    bool "Rotate message files"
    25     default n
     28    default y
    2629    depends on SYSLOGD
    2730    help
     
    3134config FEATURE_REMOTE_LOG
    3235    bool "Remote Log support"
    33     default n
     36    default y
    3437    depends on SYSLOGD
    3538    help
    3639      When you enable this feature, the syslogd utility can
    3740      be used to send system log messages to another system
    38       connected via a network.  This allows the remote
     41      connected via a network. This allows the remote
    3942      machine to log all the system messages, which can be
    4043      terribly useful for reducing the number of serial
    41       cables you use.  It can also be a very good security
     44      cables you use. It can also be a very good security
    4245      measure to prevent system logs from being tampered with
    4346      by an intruder.
    4447
     48config FEATURE_SYSLOGD_DUP
     49    bool "Support -D (drop dups) option"
     50    default y
     51    depends on SYSLOGD
     52    help
     53      Option -D instructs syslogd to drop consecutive messages
     54      which are totally the same.
     55
     56config FEATURE_SYSLOGD_READ_BUFFER_SIZE
     57    int "Read buffer size in bytes"
     58    default 256
     59    range 256 20000
     60    depends on SYSLOGD
     61    help
     62      This option sets the size of the syslog read buffer.
     63      Actual memory usage increases around five times the
     64      change done here.
     65
    4566config FEATURE_IPC_SYSLOG
    4667    bool "Circular Buffer support"
    47     default n
     68    default y
    4869    depends on SYSLOGD
    4970    help
     
    5172      use a circular buffer to record system log messages.
    5273      When the buffer is filled it will continue to overwrite
    53       the oldest messages.  This can be very useful for
     74      the oldest messages. This can be very useful for
    5475      systems with little or no permanent storage, since
    5576      otherwise system logs can eventually fill up your
     
    5879
    5980config FEATURE_IPC_SYSLOG_BUFFER_SIZE
    60     int "    Circular buffer size in Kbytes (minimum 4KB)"
     81    int "Circular buffer size in Kbytes (minimum 4KB)"
    6182    default 16
    6283    range 4 2147483647
     
    7293    help
    7394      If you enabled Circular Buffer support, you almost
    74       certainly want to enable this feature as well.  This
     95      certainly want to enable this feature as well. This
    7596      utility will allow you to read the messages that are
    7697      stored in the syslogd circular buffer.
    7798
    7899config FEATURE_LOGREAD_REDUCED_LOCKING
    79     bool "logread double buffering"
    80     default n
     100    bool "Double buffering"
     101    default y
    81102    depends on LOGREAD
    82103    help
     
    89110config KLOGD
    90111    bool "klogd"
    91     default n
     112    default y
    92113    help
    93114      klogd is a utility which intercepts and logs all
    94115      messages from the Linux kernel and sends the messages
    95       out to the 'syslogd' utility so they can be logged.  If
     116      out to the 'syslogd' utility so they can be logged. If
    96117      you wish to record the messages produced by the kernel,
    97118      you should enable this option.
    98119
     120config FEATURE_KLOGD_KLOGCTL
     121    bool "Use the klogctl() interface"
     122    default y
     123    depends on KLOGD && PLATFORM_LINUX
     124    help
     125      The klogd applet supports two interfaces for reading
     126      kernel messages. Linux provides the klogctl() interface
     127      which allows reading messages from the kernel ring buffer
     128      independently from the file system.
     129
     130      If you answer 'N' here, klogd will use the more portable
     131      approach of reading them from /proc or a device node.
     132      However, this method requires the file to be available.
     133
     134      If in doubt, say 'Y'.
     135
    99136config LOGGER
    100137    bool "logger"
    101     default n
     138    default y
    102139    select FEATURE_SYSLOG
    103140    help
    104141        The logger utility allows you to send arbitrary text
    105142        messages to the system log (i.e. the 'syslogd' utility) so
    106         they can be logged.  This is generally used to help locate
     143        they can be logged. This is generally used to help locate
    107144        problems that occur within programs and scripts.
    108145
    109146endmenu
    110 
Note: See TracChangeset for help on using the changeset viewer.