Kconfig 3.1 KB

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