Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. endmenu