]> bbs.cooldavid.org Git - net-next-2.6.git/blame - lib/Kconfig
[PATCH] Fix generic WARN_ON message
[net-next-2.6.git] / lib / Kconfig
CommitLineData
1da177e4
LT
1#
2# Library configuration
3#
4
5menu "Library routines"
6
7config CRC_CCITT
8 tristate "CRC-CCITT functions"
9 help
10 This option is provided for the case where no in-kernel-tree
11 modules require CRC-CCITT functions, but a module built outside
12 the kernel tree does. Such modules that use library CRC-CCITT
13 functions require M here.
14
7657ec1f
EP
15config CRC16
16 tristate "CRC16 functions"
17 help
18 This option is provided for the case where no in-kernel-tree
19 modules require CRC16 functions, but a module built outside
20 the kernel tree does. Such modules that use library CRC16
21 functions require M here.
22
1da177e4
LT
23config CRC32
24 tristate "CRC32 functions"
25 default y
26 help
27 This option is provided for the case where no in-kernel-tree
28 modules require CRC32 functions, but a module built outside the
29 kernel tree does. Such modules that use library CRC32 functions
30 require M here.
31
32config LIBCRC32C
33 tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
34 help
35 This option is provided for the case where no in-kernel-tree
36 modules require CRC32c functions, but a module built outside the
37 kernel tree does. Such modules that use library CRC32c functions
38 require M here. See Castagnoli93.
39 Module will be libcrc32c.
40
e65e1fc2
AV
41config AUDIT_GENERIC
42 bool
43 depends on AUDIT && !AUDIT_ARCH
44 default y
45
1da177e4
LT
46#
47# compression support is select'ed if needed
48#
49config ZLIB_INFLATE
50 tristate
51
52config ZLIB_DEFLATE
53 tristate
54
f14f75b8
JS
55#
56# Generic allocator support is selected if needed
57#
58config GENERIC_ALLOCATOR
59 boolean
60
1da177e4
LT
61#
62# reed solomon support is select'ed if needed
63#
64config REED_SOLOMON
65 tristate
66
67config REED_SOLOMON_ENC8
68 boolean
69
70config REED_SOLOMON_DEC8
71 boolean
72
73config REED_SOLOMON_ENC16
74 boolean
75
76config REED_SOLOMON_DEC16
77 boolean
78
f7704347
DM
79#
80# Textsearch support is select'ed if needed
81#
2de4ff7b 82config TEXTSEARCH
f7704347 83 boolean
1da177e4 84
df3fb93a 85config TEXTSEARCH_KMP
f7704347 86 tristate
df3fb93a 87
8082e4ed 88config TEXTSEARCH_BM
29cb9f9c 89 tristate
8082e4ed 90
6408f79c 91config TEXTSEARCH_FSM
f7704347 92 tristate
6408f79c 93
77ba89c5
IM
94#
95# plist support is select#ed if needed
96#
97config PLIST
98 boolean
99
2de4ff7b 100endmenu