Config.in 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see scripts/kbuild/config-language.txt.
  5. #
  6. menu "System Logging Utilities"
  7. config BUSYBOX_CONFIG_SYSLOGD
  8. bool "syslogd"
  9. default y
  10. help
  11. The syslogd utility is used to record logs of all the
  12. significant events that occur on a system. Every
  13. message that is logged records the date and time of the
  14. event, and will generally also record the name of the
  15. application that generated the message. When used in
  16. conjunction with klogd, messages from the Linux kernel
  17. can also be recorded. This is terribly useful,
  18. especially for finding what happened when something goes
  19. wrong. And something almost always will go wrong if
  20. you wait long enough....
  21. config BUSYBOX_CONFIG_FEATURE_ROTATE_LOGFILE
  22. bool "Rotate message files"
  23. default y
  24. depends on BUSYBOX_CONFIG_SYSLOGD
  25. help
  26. This enables syslogd to rotate the message files
  27. on his own. No need to use an external rotatescript.
  28. config BUSYBOX_CONFIG_FEATURE_REMOTE_LOG
  29. bool "Remote Log support"
  30. default y
  31. depends on BUSYBOX_CONFIG_SYSLOGD
  32. help
  33. When you enable this feature, the syslogd utility can
  34. be used to send system log messages to another system
  35. connected via a network. This allows the remote
  36. machine to log all the system messages, which can be
  37. terribly useful for reducing the number of serial
  38. cables you use. It can also be a very good security
  39. measure to prevent system logs from being tampered with
  40. by an intruder.
  41. config BUSYBOX_CONFIG_FEATURE_SYSLOGD_DUP
  42. bool "Support -D (drop dups) option"
  43. default n
  44. depends on BUSYBOX_CONFIG_SYSLOGD
  45. help
  46. Option -D instructs syslogd to drop consecutive messages
  47. which are totally the same.
  48. config BUSYBOX_CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE
  49. int "Read buffer size in bytes"
  50. default 256
  51. range 256 20000
  52. depends on BUSYBOX_CONFIG_SYSLOGD
  53. help
  54. This option sets the size of the syslog read buffer.
  55. Actual memory usage increases around five times the
  56. change done here.
  57. config BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG
  58. bool "Circular Buffer support"
  59. default y
  60. depends on BUSYBOX_CONFIG_SYSLOGD
  61. help
  62. When you enable this feature, the syslogd utility will
  63. use a circular buffer to record system log messages.
  64. When the buffer is filled it will continue to overwrite
  65. the oldest messages. This can be very useful for
  66. systems with little or no permanent storage, since
  67. otherwise system logs can eventually fill up your
  68. entire filesystem, which may cause your system to
  69. break badly.
  70. config BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE
  71. int "Circular buffer size in Kbytes (minimum 4KB)"
  72. default 16
  73. range 4 2147483647
  74. depends on BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG
  75. help
  76. This option sets the size of the circular buffer
  77. used to record system log messages.
  78. config BUSYBOX_CONFIG_LOGREAD
  79. bool "logread"
  80. default y
  81. depends on BUSYBOX_CONFIG_FEATURE_IPC_SYSLOG
  82. help
  83. If you enabled Circular Buffer support, you almost
  84. certainly want to enable this feature as well. This
  85. utility will allow you to read the messages that are
  86. stored in the syslogd circular buffer.
  87. config BUSYBOX_CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING
  88. bool "Double buffering"
  89. default n
  90. depends on BUSYBOX_CONFIG_LOGREAD
  91. help
  92. 'logread' ouput to slow serial terminals can have
  93. side effects on syslog because of the semaphore.
  94. This option make logread to double buffer copy
  95. from circular buffer, minimizing semaphore
  96. contention at some minor memory expense.
  97. config BUSYBOX_CONFIG_KLOGD
  98. bool "klogd"
  99. default y
  100. help
  101. klogd is a utility which intercepts and logs all
  102. messages from the Linux kernel and sends the messages
  103. out to the 'syslogd' utility so they can be logged. If
  104. you wish to record the messages produced by the kernel,
  105. you should enable this option.
  106. config BUSYBOX_CONFIG_FEATURE_KLOGD_KLOGCTL
  107. bool "Use the klogctl() interface"
  108. default y
  109. depends on BUSYBOX_CONFIG_KLOGD && BUSYBOX_CONFIG_PLATFORM_LINUX
  110. help
  111. The klogd applet supports two interfaces for reading
  112. kernel messages. Linux provides the klogctl() interface
  113. which allows reading messages from the kernel ring buffer
  114. independently from the file system.
  115. If you answer 'N' here, klogd will use the more portable
  116. approach of reading them from /proc or a device node.
  117. However, this method requires the file to be available.
  118. If in doubt, say 'Y'.
  119. config BUSYBOX_CONFIG_LOGGER
  120. bool "logger"
  121. default y
  122. select BUSYBOX_CONFIG_FEATURE_SYSLOG
  123. help
  124. The logger utility allows you to send arbitrary text
  125. messages to the system log (i.e. the 'syslogd' utility) so
  126. they can be logged. This is generally used to help locate
  127. problems that occur within programs and scripts.
  128. endmenu