Kconfig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. #
  2. # Library configuration
  3. #
  4. menu "Library routines"
  5. config CRC_CCITT
  6. tristate "CRC-CCITT functions"
  7. help
  8. This option is provided for the case where no in-kernel-tree
  9. modules require CRC-CCITT functions, but a module built outside
  10. the kernel tree does. Such modules that use library CRC-CCITT
  11. functions require M here.
  12. config CRC16
  13. tristate "CRC16 functions"
  14. help
  15. This option is provided for the case where no in-kernel-tree
  16. modules require CRC16 functions, but a module built outside
  17. the kernel tree does. Such modules that use library CRC16
  18. functions require M here.
  19. config CRC32
  20. tristate "CRC32 functions"
  21. default y
  22. help
  23. This option is provided for the case where no in-kernel-tree
  24. modules require CRC32 functions, but a module built outside the
  25. kernel tree does. Such modules that use library CRC32 functions
  26. require M here.
  27. config LIBCRC32C
  28. tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
  29. help
  30. This option is provided for the case where no in-kernel-tree
  31. modules require CRC32c functions, but a module built outside the
  32. kernel tree does. Such modules that use library CRC32c functions
  33. require M here. See Castagnoli93.
  34. Module will be libcrc32c.
  35. config AUDIT_GENERIC
  36. bool
  37. depends on AUDIT && !AUDIT_ARCH
  38. default y
  39. #
  40. # compression support is select'ed if needed
  41. #
  42. config ZLIB_INFLATE
  43. tristate
  44. config ZLIB_DEFLATE
  45. tristate
  46. #
  47. # Generic allocator support is selected if needed
  48. #
  49. config GENERIC_ALLOCATOR
  50. boolean
  51. #
  52. # reed solomon support is select'ed if needed
  53. #
  54. config REED_SOLOMON
  55. tristate
  56. config REED_SOLOMON_ENC8
  57. boolean
  58. config REED_SOLOMON_DEC8
  59. boolean
  60. config REED_SOLOMON_ENC16
  61. boolean
  62. config REED_SOLOMON_DEC16
  63. boolean
  64. #
  65. # Textsearch support is select'ed if needed
  66. #
  67. config TEXTSEARCH
  68. boolean
  69. config TEXTSEARCH_KMP
  70. tristate
  71. config TEXTSEARCH_BM
  72. tristate
  73. config TEXTSEARCH_FSM
  74. tristate
  75. #
  76. # plist support is select#ed if needed
  77. #
  78. config PLIST
  79. boolean
  80. endmenu