Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / lib / Kconfig
blobfd4118e097f0711c9c08cf6e08575678fcc5ec16
2 # Library configuration
5 menu "Library routines"
7 config BITREVERSE
8         tristate
10 config GENERIC_FIND_FIRST_BIT
11         bool
13 config GENERIC_FIND_NEXT_BIT
14         bool
16 config CRC_CCITT
17         tristate "CRC-CCITT functions"
18         help
19           This option is provided for the case where no in-kernel-tree
20           modules require CRC-CCITT functions, but a module built outside
21           the kernel tree does. Such modules that use library CRC-CCITT
22           functions require M here.
24 config CRC16
25         tristate "CRC16 functions"
26         help
27           This option is provided for the case where no in-kernel-tree
28           modules require CRC16 functions, but a module built outside
29           the kernel tree does. Such modules that use library CRC16
30           functions require M here.
32 config CRC_T10DIF
33         tristate "CRC calculation for the T10 Data Integrity Field"
34         help
35           This option is only needed if a module that's not in the
36           kernel tree needs to calculate CRC checks for use with the
37           SCSI data integrity subsystem.
39 config CRC_ITU_T
40         tristate "CRC ITU-T V.41 functions"
41         help
42           This option is provided for the case where no in-kernel-tree
43           modules require CRC ITU-T V.41 functions, but a module built outside
44           the kernel tree does. Such modules that use library CRC ITU-T V.41
45           functions require M here.
47 config CRC32
48         tristate "CRC32 functions"
49         default y
50         select BITREVERSE
51         help
52           This option is provided for the case where no in-kernel-tree
53           modules require CRC32 functions, but a module built outside the
54           kernel tree does. Such modules that use library CRC32 functions
55           require M here.
57 config CRC7
58         tristate "CRC7 functions"
59         help
60           This option is provided for the case where no in-kernel-tree
61           modules require CRC7 functions, but a module built outside
62           the kernel tree does. Such modules that use library CRC7
63           functions require M here.
65 config LIBCRC32C
66         tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
67         select CRYPTO
68         select CRYPTO_CRC32C
69         help
70           This option is provided for the case where no in-kernel-tree
71           modules require CRC32c functions, but a module built outside the
72           kernel tree does. Such modules that use library CRC32c functions
73           require M here.  See Castagnoli93.
74           Module will be libcrc32c.
76 config AUDIT_GENERIC
77         bool
78         depends on AUDIT && !AUDIT_ARCH
79         default y
82 # compression support is select'ed if needed
84 config ZLIB_INFLATE
85         tristate
87 config ZLIB_DEFLATE
88         tristate
90 config LZO_COMPRESS
91         tristate
93 config LZO_DECOMPRESS
94         tristate
97 # Generic allocator support is selected if needed
99 config GENERIC_ALLOCATOR
100         boolean
103 # reed solomon support is select'ed if needed
105 config REED_SOLOMON
106         tristate
107         
108 config REED_SOLOMON_ENC8
109         boolean
111 config REED_SOLOMON_DEC8
112         boolean
114 config REED_SOLOMON_ENC16
115         boolean
117 config REED_SOLOMON_DEC16
118         boolean
121 # Textsearch support is select'ed if needed
123 config TEXTSEARCH
124         boolean
126 config TEXTSEARCH_KMP
127         tristate
129 config TEXTSEARCH_BM
130         tristate
132 config TEXTSEARCH_FSM
133         tristate
136 # plist support is select#ed if needed
138 config PLIST
139         boolean
141 config HAS_IOMEM
142         boolean
143         depends on !NO_IOMEM
144         default y
146 config HAS_IOPORT
147         boolean
148         depends on HAS_IOMEM && !NO_IOPORT
149         default y
151 config HAS_DMA
152         boolean
153         depends on !NO_DMA
154         default y
156 config CHECK_SIGNATURE
157         bool
159 config HAVE_LMB
160         boolean
162 endmenu