Kconfig 2.0 KB

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