MINI2440: remove __initdata from some structs
[linux-2.6/mini2440.git] / lib / Kconfig
blobbb1326d3839c9aaa468e6ad501a1087389b1934f
2 # Library configuration
5 config BINARY_PRINTF
6         def_bool n
8 menu "Library routines"
10 config BITREVERSE
11         tristate
13 config RATIONAL
14         boolean
16 config GENERIC_FIND_FIRST_BIT
17         bool
19 config GENERIC_FIND_NEXT_BIT
20         bool
22 config GENERIC_FIND_LAST_BIT
23         bool
24         default y
26 config CRC_CCITT
27         tristate "CRC-CCITT functions"
28         help
29           This option is provided for the case where no in-kernel-tree
30           modules require CRC-CCITT functions, but a module built outside
31           the kernel tree does. Such modules that use library CRC-CCITT
32           functions require M here.
34 config CRC16
35         tristate "CRC16 functions"
36         help
37           This option is provided for the case where no in-kernel-tree
38           modules require CRC16 functions, but a module built outside
39           the kernel tree does. Such modules that use library CRC16
40           functions require M here.
42 config CRC_T10DIF
43         tristate "CRC calculation for the T10 Data Integrity Field"
44         help
45           This option is only needed if a module that's not in the
46           kernel tree needs to calculate CRC checks for use with the
47           SCSI data integrity subsystem.
49 config CRC_ITU_T
50         tristate "CRC ITU-T V.41 functions"
51         help
52           This option is provided for the case where no in-kernel-tree
53           modules require CRC ITU-T V.41 functions, but a module built outside
54           the kernel tree does. Such modules that use library CRC ITU-T V.41
55           functions require M here.
57 config CRC32
58         tristate "CRC32 functions"
59         default y
60         select BITREVERSE
61         help
62           This option is provided for the case where no in-kernel-tree
63           modules require CRC32 functions, but a module built outside the
64           kernel tree does. Such modules that use library CRC32 functions
65           require M here.
67 config CRC7
68         tristate "CRC7 functions"
69         help
70           This option is provided for the case where no in-kernel-tree
71           modules require CRC7 functions, but a module built outside
72           the kernel tree does. Such modules that use library CRC7
73           functions require M here.
75 config LIBCRC32C
76         tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
77         select CRYPTO
78         select CRYPTO_CRC32C
79         help
80           This option is provided for the case where no in-kernel-tree
81           modules require CRC32c functions, but a module built outside the
82           kernel tree does. Such modules that use library CRC32c functions
83           require M here.  See Castagnoli93.
84           Module will be libcrc32c.
86 config AUDIT_GENERIC
87         bool
88         depends on AUDIT && !AUDIT_ARCH
89         default y
92 # compression support is select'ed if needed
94 config ZLIB_INFLATE
95         tristate
97 config ZLIB_DEFLATE
98         tristate
100 config LZO_COMPRESS
101         tristate
103 config LZO_DECOMPRESS
104         tristate
107 # These all provide a common interface (hence the apparent duplication with
108 # ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.)
110 config DECOMPRESS_GZIP
111         select ZLIB_INFLATE
112         tristate
114 config DECOMPRESS_BZIP2
115         tristate
117 config DECOMPRESS_LZMA
118         tristate
121 # Generic allocator support is selected if needed
123 config GENERIC_ALLOCATOR
124         boolean
127 # reed solomon support is select'ed if needed
129 config REED_SOLOMON
130         tristate
131         
132 config REED_SOLOMON_ENC8
133         boolean
135 config REED_SOLOMON_DEC8
136         boolean
138 config REED_SOLOMON_ENC16
139         boolean
141 config REED_SOLOMON_DEC16
142         boolean
145 # Textsearch support is select'ed if needed
147 config TEXTSEARCH
148         boolean
150 config TEXTSEARCH_KMP
151         tristate
153 config TEXTSEARCH_BM
154         tristate
156 config TEXTSEARCH_FSM
157         tristate
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
192 # Netlink attribute parsing support is select'ed if needed
194 config NLATTR
195         bool
198 # Generic 64-bit atomic support is selected if needed
200 config GENERIC_ATOMIC64
201        bool
203 endmenu