x86: UV, SGI RTC: loop through installed UV blades
[linux-2.6/mini2440.git] / lib / Kconfig
blobdaa481824d9c9a68438d097ec4bedd9c2114dc2e
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 GENERIC_FIND_LAST_BIT
17         bool
18         default y
20 config CRC_CCITT
21         tristate "CRC-CCITT functions"
22         help
23           This option is provided for the case where no in-kernel-tree
24           modules require CRC-CCITT functions, but a module built outside
25           the kernel tree does. Such modules that use library CRC-CCITT
26           functions require M here.
28 config CRC16
29         tristate "CRC16 functions"
30         help
31           This option is provided for the case where no in-kernel-tree
32           modules require CRC16 functions, but a module built outside
33           the kernel tree does. Such modules that use library CRC16
34           functions require M here.
36 config CRC_T10DIF
37         tristate "CRC calculation for the T10 Data Integrity Field"
38         help
39           This option is only needed if a module that's not in the
40           kernel tree needs to calculate CRC checks for use with the
41           SCSI data integrity subsystem.
43 config CRC_ITU_T
44         tristate "CRC ITU-T V.41 functions"
45         help
46           This option is provided for the case where no in-kernel-tree
47           modules require CRC ITU-T V.41 functions, but a module built outside
48           the kernel tree does. Such modules that use library CRC ITU-T V.41
49           functions require M here.
51 config CRC32
52         tristate "CRC32 functions"
53         default y
54         select BITREVERSE
55         help
56           This option is provided for the case where no in-kernel-tree
57           modules require CRC32 functions, but a module built outside the
58           kernel tree does. Such modules that use library CRC32 functions
59           require M here.
61 config CRC7
62         tristate "CRC7 functions"
63         help
64           This option is provided for the case where no in-kernel-tree
65           modules require CRC7 functions, but a module built outside
66           the kernel tree does. Such modules that use library CRC7
67           functions require M here.
69 config LIBCRC32C
70         tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
71         select CRYPTO
72         select CRYPTO_CRC32C
73         help
74           This option is provided for the case where no in-kernel-tree
75           modules require CRC32c functions, but a module built outside the
76           kernel tree does. Such modules that use library CRC32c functions
77           require M here.  See Castagnoli93.
78           Module will be libcrc32c.
80 config AUDIT_GENERIC
81         bool
82         depends on AUDIT && !AUDIT_ARCH
83         default y
86 # compression support is select'ed if needed
88 config ZLIB_INFLATE
89         tristate
91 config ZLIB_DEFLATE
92         tristate
94 config LZO_COMPRESS
95         tristate
97 config LZO_DECOMPRESS
98         tristate
101 # These all provide a common interface (hence the apparent duplication with
102 # ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.)
104 config DECOMPRESS_GZIP
105         select ZLIB_INFLATE
106         tristate
108 config DECOMPRESS_BZIP2
109         tristate
111 config DECOMPRESS_LZMA
112         tristate
115 # Generic allocator support is selected if needed
117 config GENERIC_ALLOCATOR
118         boolean
121 # reed solomon support is select'ed if needed
123 config REED_SOLOMON
124         tristate
125         
126 config REED_SOLOMON_ENC8
127         boolean
129 config REED_SOLOMON_DEC8
130         boolean
132 config REED_SOLOMON_ENC16
133         boolean
135 config REED_SOLOMON_DEC16
136         boolean
139 # Textsearch support is select'ed if needed
141 config TEXTSEARCH
142         boolean
144 config TEXTSEARCH_KMP
145         tristate
147 config TEXTSEARCH_BM
148         tristate
150 config TEXTSEARCH_FSM
151         tristate
154 # plist support is select#ed if needed
156 config PLIST
157         boolean
159 config HAS_IOMEM
160         boolean
161         depends on !NO_IOMEM
162         default y
164 config HAS_IOPORT
165         boolean
166         depends on HAS_IOMEM && !NO_IOPORT
167         default y
169 config HAS_DMA
170         boolean
171         depends on !NO_DMA
172         default y
174 config CHECK_SIGNATURE
175         bool
177 config HAVE_LMB
178         boolean
180 config CPUMASK_OFFSTACK
181         bool "Force CPU masks off stack" if DEBUG_PER_CPU_MAPS
182         help
183           Use dynamic allocation for cpumask_var_t, instead of putting
184           them on the stack.  This is a bit more expensive, but avoids
185           stack overflow.
187 config DISABLE_OBSOLETE_CPUMASK_FUNCTIONS
188        bool "Disable obsolete cpumask functions" if DEBUG_PER_CPU_MAPS
189        depends on EXPERIMENTAL && BROKEN
191 endmenu