Kconfig (418f19ea17a99421b22a64e101e14b6a16bed66d) Kconfig (ab53d472e785e51fdfc08fc1d66252c1153e6c0f)
1#
2# Library configuration
3#
4
5menu "Library routines"
6
7config BITREVERSE
8 tristate
9
10config GENERIC_FIND_FIRST_BIT
11 bool
12
13config GENERIC_FIND_NEXT_BIT
14 bool
15
1#
2# Library configuration
3#
4
5menu "Library routines"
6
7config BITREVERSE
8 tristate
9
10config GENERIC_FIND_FIRST_BIT
11 bool
12
13config GENERIC_FIND_NEXT_BIT
14 bool
15
16config GENERIC_FIND_LAST_BIT
17 bool
18 default y
19
16config 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.
23

--- 130 unchanged lines hidden (view full) ---

154 default y
155
156config CHECK_SIGNATURE
157 bool
158
159config HAVE_LMB
160 boolean
161
20config 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.
27

--- 130 unchanged lines hidden (view full) ---

158 default y
159
160config CHECK_SIGNATURE
161 bool
162
163config HAVE_LMB
164 boolean
165
166config CPUMASK_OFFSTACK
167 bool "Force CPU masks off stack" if DEBUG_PER_CPU_MAPS
168 help
169 Use dynamic allocation for cpumask_var_t, instead of putting
170 them on the stack. This is a bit more expensive, but avoids
171 stack overflow.
172
162endmenu
173endmenu