Config.in 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "System Logging Utilities"
  6. config SYSLOGD
  7. bool "syslogd"
  8. default n
  9. help
  10. The syslogd utility is used to record logs of all the
  11. significant events that occur on a system. Every
  12. message that is logged records the date and time of the
  13. event, and will generally also record the name of the
  14. application that generated the message. When used in
  15. conjunction with klogd, messages from the Linux kernel
  16. can also be recorded. This is terribly useful,
  17. especially for finding what happened when something goes
  18. wrong. And something almost always will go wrong if
  19. you wait long enough....
  20. config FEATURE_ROTATE_LOGFILE
  21. bool "Rotate message files"
  22. default n
  23. depends on SYSLOGD
  24. help
  25. This enables syslogd to rotate the message files
  26. on his own. No need to use an external rotatescript.
  27. config FEATURE_REMOTE_LOG
  28. bool "Remote Log support"
  29. default n
  30. depends on SYSLOGD
  31. help
  32. When you enable this feature, the syslogd utility can
  33. be used to send system log messages to another system
  34. connected via a network. This allows the remote
  35. machine to log all the system messages, which can be
  36. terribly useful for reducing the number of serial
  37. cables you use. It can also be a very good security
  38. measure to prevent system logs from being tampered with
  39. by an intruder.
  40. config FEATURE_IPC_SYSLOG
  41. bool "Circular Buffer support"
  42. default n
  43. depends on SYSLOGD
  44. help
  45. When you enable this feature, the syslogd utility will
  46. use a circular buffer to record system log messages.
  47. When the buffer is filled it will continue to overwrite
  48. the oldest messages. This can be very useful for
  49. systems with little or no permanent storage, since
  50. otherwise system logs can eventually fill up your
  51. entire filesystem, which may cause your system to
  52. break badly.
  53. config FEATURE_IPC_SYSLOG_BUFFER_SIZE
  54. int " Circular buffer size in Kbytes (minimum 4KB)"
  55. default 16
  56. depends on FEATURE_IPC_SYSLOG
  57. help
  58. This option sets the size of the circular buffer
  59. used to record system log messages.
  60. config LOGREAD
  61. bool "logread"
  62. default y
  63. depends on FEATURE_IPC_SYSLOG
  64. help
  65. If you enabled Circular Buffer support, you almost
  66. certainly want to enable this feature as well. This
  67. utility will allow you to read the messages that are
  68. stored in the syslogd circular buffer.
  69. config FEATURE_LOGREAD_REDUCED_LOCKING
  70. bool "logread double buffering"
  71. default n
  72. depends on LOGREAD
  73. help
  74. 'logread' ouput to slow serial terminals can have
  75. side effects on syslog because of the semaphore.
  76. This option make logread to double buffer copy
  77. from circular buffer, minimizing semaphore
  78. contention at some minor memory expense.
  79. config KLOGD
  80. bool "klogd"
  81. default n
  82. depends on SYSLOGD
  83. select FEATURE_SYSLOG
  84. help
  85. klogd is a utility which intercepts and logs all
  86. messages from the Linux kernel and sends the messages
  87. out to the 'syslogd' utility so they can be logged. If
  88. you wish to record the messages produced by the kernel,
  89. you should enable this option.
  90. config LOGGER
  91. bool "logger"
  92. default n
  93. select FEATURE_SYSLOG
  94. help
  95. The logger utility allows you to send arbitrary text
  96. messages to the system log (i.e. the 'syslogd' utility) so
  97. they can be logged. This is generally used to help locate
  98. problems that occur within programs and scripts.
  99. endmenu