Config.in 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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_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_FEATURE_ROTATE_LOGFILE
  22. bool "Rotate message files"
  23. default y
  24. depends on BUSYBOX_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_FEATURE_REMOTE_LOG
  29. bool "Remote Log support"
  30. default y
  31. depends on BUSYBOX_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_FEATURE_SYSLOGD_DUP
  42. bool "Support -D (drop dups) option"
  43. default y
  44. depends on BUSYBOX_SYSLOGD
  45. help
  46. Option -D instructs syslogd to drop consecutive messages
  47. which are totally the same.
  48. config BUSYBOX_FEATURE_SYSLOGD_CFG
  49. bool "Support syslog.conf"
  50. default n
  51. depends on BUSYBOX_SYSLOGD
  52. help
  53. Supports restricted syslogd config. See docs/syslog.conf.txt
  54. config BUSYBOX_FEATURE_SYSLOGD_PRECISE_TIMESTAMPS
  55. bool "Include milliseconds in timestamps"
  56. default n
  57. depends on BUSYBOX_SYSLOGD
  58. help
  59. Includes milliseconds (HH:MM:SS.mmm) in timestamp when
  60. timestamps are added.
  61. config BUSYBOX_FEATURE_SYSLOGD_READ_BUFFER_SIZE
  62. int "Read buffer size in bytes"
  63. default 256
  64. range 256 20000
  65. depends on BUSYBOX_SYSLOGD
  66. help
  67. This option sets the size of the syslog read buffer.
  68. Actual memory usage increases around five times the
  69. change done here.
  70. config BUSYBOX_FEATURE_IPC_SYSLOG
  71. bool "Circular Buffer support"
  72. default y
  73. depends on BUSYBOX_SYSLOGD
  74. help
  75. When you enable this feature, the syslogd utility will
  76. use a circular buffer to record system log messages.
  77. When the buffer is filled it will continue to overwrite
  78. the oldest messages. This can be very useful for
  79. systems with little or no permanent storage, since
  80. otherwise system logs can eventually fill up your
  81. entire filesystem, which may cause your system to
  82. break badly.
  83. config BUSYBOX_FEATURE_IPC_SYSLOG_BUFFER_SIZE
  84. int "Circular buffer size in Kbytes (minimum 4KB)"
  85. default 32
  86. range 4 2147483647
  87. depends on BUSYBOX_FEATURE_IPC_SYSLOG
  88. help
  89. This option sets the size of the circular buffer
  90. used to record system log messages.
  91. config BUSYBOX_FEATURE_KMSG_SYSLOG
  92. bool "Linux kernel printk buffer support"
  93. default n
  94. depends on BUSYBOX_SYSLOGD
  95. select BUSYBOX_PLATFORM_LINUX
  96. help
  97. When you enable this feature, the syslogd utility will
  98. write system log message to the Linux kernel's printk buffer.
  99. This can be used as a smaller alternative to the syslogd IPC
  100. support, as klogd and logread aren't needed.
  101. NOTICE: Syslog facilities in log entries needs kernel 3.5+.
  102. config BUSYBOX_LOGREAD
  103. bool "logread"
  104. default y
  105. depends on BUSYBOX_FEATURE_IPC_SYSLOG
  106. help
  107. If you enabled Circular Buffer support, you almost
  108. certainly want to enable this feature as well. This
  109. utility will allow you to read the messages that are
  110. stored in the syslogd circular buffer.
  111. config BUSYBOX_FEATURE_LOGREAD_REDUCED_LOCKING
  112. bool "Double buffering"
  113. default y
  114. depends on BUSYBOX_LOGREAD
  115. help
  116. 'logread' ouput to slow serial terminals can have
  117. side effects on syslog because of the semaphore.
  118. This option make logread to double buffer copy
  119. from circular buffer, minimizing semaphore
  120. contention at some minor memory expense.
  121. config BUSYBOX_KLOGD
  122. bool "klogd"
  123. default y
  124. help
  125. klogd is a utility which intercepts and logs all
  126. messages from the Linux kernel and sends the messages
  127. out to the 'syslogd' utility so they can be logged. If
  128. you wish to record the messages produced by the kernel,
  129. you should enable this option.
  130. comment "klogd should not be used together with syslog to kernel printk buffer"
  131. depends on BUSYBOX_KLOGD && BUSYBOX_FEATURE_KMSG_SYSLOG
  132. config BUSYBOX_FEATURE_KLOGD_KLOGCTL
  133. bool "Use the klogctl() interface"
  134. default y
  135. depends on BUSYBOX_KLOGD
  136. select BUSYBOX_PLATFORM_LINUX
  137. help
  138. The klogd applet supports two interfaces for reading
  139. kernel messages. Linux provides the klogctl() interface
  140. which allows reading messages from the kernel ring buffer
  141. independently from the file system.
  142. If you answer 'N' here, klogd will use the more portable
  143. approach of reading them from /proc or a device node.
  144. However, this method requires the file to be available.
  145. If in doubt, say 'Y'.
  146. config BUSYBOX_LOGGER
  147. bool "logger"
  148. default y
  149. select BUSYBOX_FEATURE_SYSLOG
  150. help
  151. The logger utility allows you to send arbitrary text
  152. messages to the system log (i.e. the 'syslogd' utility) so
  153. they can be logged. This is generally used to help locate
  154. problems that occur within programs and scripts.
  155. endmenu