Kconfig 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 CRC32
  13. tristate "CRC32 functions"
  14. default y
  15. help
  16. This option is provided for the case where no in-kernel-tree
  17. modules require CRC32 functions, but a module built outside the
  18. kernel tree does. Such modules that use library CRC32 functions
  19. require M here.
  20. config LIBCRC32C
  21. tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
  22. help
  23. This option is provided for the case where no in-kernel-tree
  24. modules require CRC32c functions, but a module built outside the
  25. kernel tree does. Such modules that use library CRC32c functions
  26. require M here. See Castagnoli93.
  27. Module will be libcrc32c.
  28. #
  29. # compression support is select'ed if needed
  30. #
  31. config ZLIB_INFLATE
  32. tristate
  33. config ZLIB_DEFLATE
  34. tristate
  35. #
  36. # Generic allocator support is selected if needed
  37. #
  38. config GENERIC_ALLOCATOR
  39. boolean
  40. #
  41. # reed solomon support is select'ed if needed
  42. #
  43. config REED_SOLOMON
  44. tristate
  45. config REED_SOLOMON_ENC8
  46. boolean
  47. config REED_SOLOMON_DEC8
  48. boolean
  49. config REED_SOLOMON_ENC16
  50. boolean
  51. config REED_SOLOMON_DEC16
  52. boolean
  53. config TEXTSEARCH
  54. boolean "Textsearch infrastructure"
  55. default y
  56. help
  57. Say Y here if you want to provide a textsearch infrastructure
  58. to other subsystems.
  59. config TEXTSEARCH_KMP
  60. depends on TEXTSEARCH
  61. tristate "Knuth-Morris-Pratt"
  62. help
  63. Say Y here if you want to be able to search text using the
  64. Knuth-Morris-Pratt textsearch algorithm.
  65. To compile this code as a module, choose M here: the
  66. module will be called ts_kmp.
  67. config TEXTSEARCH_FSM
  68. depends on TEXTSEARCH
  69. tristate "Finite state machine"
  70. help
  71. Say Y here if you want to be able to search text using a
  72. naive finite state machine approach implementing a subset
  73. of regular expressions.
  74. To compile this code as a module, choose M here: the
  75. module will be called ts_fsm.
  76. endmenu