Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. #
  54. # Textsearch support is select'ed if needed
  55. #
  56. config TEXTSEARCH
  57. boolean
  58. config TEXTSEARCH_KMP
  59. tristate
  60. config TEXTSEARCH_FSM
  61. tristate
  62. endmenu