Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. #
  36. # compression support is select'ed if needed
  37. #
  38. config ZLIB_INFLATE
  39. tristate
  40. config ZLIB_DEFLATE
  41. tristate
  42. #
  43. # Generic allocator support is selected if needed
  44. #
  45. config GENERIC_ALLOCATOR
  46. boolean
  47. #
  48. # reed solomon support is select'ed if needed
  49. #
  50. config REED_SOLOMON
  51. tristate
  52. config REED_SOLOMON_ENC8
  53. boolean
  54. config REED_SOLOMON_DEC8
  55. boolean
  56. config REED_SOLOMON_ENC16
  57. boolean
  58. config REED_SOLOMON_DEC16
  59. boolean
  60. #
  61. # Textsearch support is select'ed if needed
  62. #
  63. config TEXTSEARCH
  64. boolean
  65. config TEXTSEARCH_KMP
  66. tristate
  67. config TEXTSEARCH_BM
  68. tristate
  69. config TEXTSEARCH_FSM
  70. tristate
  71. endmenu