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