Kconfig 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. #
  2. # Library configuration
  3. #
  4. menu "Library routines"
  5. config BITREVERSE
  6. tristate
  7. config CRC_CCITT
  8. tristate "CRC-CCITT functions"
  9. help
  10. This option is provided for the case where no in-kernel-tree
  11. modules require CRC-CCITT functions, but a module built outside
  12. the kernel tree does. Such modules that use library CRC-CCITT
  13. functions require M here.
  14. config CRC16
  15. tristate "CRC16 functions"
  16. help
  17. This option is provided for the case where no in-kernel-tree
  18. modules require CRC16 functions, but a module built outside
  19. the kernel tree does. Such modules that use library CRC16
  20. functions require M here.
  21. config CRC_ITU_T
  22. tristate "CRC ITU-T V.41 functions"
  23. help
  24. This option is provided for the case where no in-kernel-tree
  25. modules require CRC ITU-T V.41 functions, but a module built outside
  26. the kernel tree does. Such modules that use library CRC ITU-T V.41
  27. functions require M here.
  28. config CRC32
  29. tristate "CRC32 functions"
  30. default y
  31. select BITREVERSE
  32. help
  33. This option is provided for the case where no in-kernel-tree
  34. modules require CRC32 functions, but a module built outside the
  35. kernel tree does. Such modules that use library CRC32 functions
  36. require M here.
  37. config LIBCRC32C
  38. tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
  39. help
  40. This option is provided for the case where no in-kernel-tree
  41. modules require CRC32c functions, but a module built outside the
  42. kernel tree does. Such modules that use library CRC32c functions
  43. require M here. See Castagnoli93.
  44. Module will be libcrc32c.
  45. config AUDIT_GENERIC
  46. bool
  47. depends on AUDIT && !AUDIT_ARCH
  48. default y
  49. #
  50. # compression support is select'ed if needed
  51. #
  52. config ZLIB_INFLATE
  53. tristate
  54. config ZLIB_DEFLATE
  55. tristate
  56. #
  57. # Generic allocator support is selected if needed
  58. #
  59. config GENERIC_ALLOCATOR
  60. boolean
  61. #
  62. # reed solomon support is select'ed if needed
  63. #
  64. config REED_SOLOMON
  65. tristate
  66. config REED_SOLOMON_ENC8
  67. boolean
  68. config REED_SOLOMON_DEC8
  69. boolean
  70. config REED_SOLOMON_ENC16
  71. boolean
  72. config REED_SOLOMON_DEC16
  73. boolean
  74. #
  75. # Textsearch support is select'ed if needed
  76. #
  77. config TEXTSEARCH
  78. boolean
  79. config TEXTSEARCH_KMP
  80. tristate
  81. config TEXTSEARCH_BM
  82. tristate
  83. config TEXTSEARCH_FSM
  84. tristate
  85. #
  86. # plist support is select#ed if needed
  87. #
  88. config PLIST
  89. boolean
  90. config HAS_IOMEM
  91. boolean
  92. depends on !NO_IOMEM
  93. default y
  94. config HAS_IOPORT
  95. boolean
  96. depends on HAS_IOMEM && !NO_IOPORT
  97. default y
  98. config HAS_DMA
  99. boolean
  100. depends on !NO_DMA
  101. default y
  102. endmenu