Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. # reed solomon support is select'ed if needed
  37. #
  38. config REED_SOLOMON
  39. tristate
  40. config REED_SOLOMON_ENC8
  41. boolean
  42. config REED_SOLOMON_DEC8
  43. boolean
  44. config REED_SOLOMON_ENC16
  45. boolean
  46. config REED_SOLOMON_DEC16
  47. boolean
  48. endmenu