[PATCH] w1: Added DS2433 driver - family id update.
[GitHub/mt8127/android_kernel_alcatel_ttab.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
15config CRC32
16 tristate "CRC32 functions"
17 default y
18 help
19 This option is provided for the case where no in-kernel-tree
20 modules require CRC32 functions, but a module built outside the
21 kernel tree does. Such modules that use library CRC32 functions
22 require M here.
23
24config LIBCRC32C
25 tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
26 help
27 This option is provided for the case where no in-kernel-tree
28 modules require CRC32c functions, but a module built outside the
29 kernel tree does. Such modules that use library CRC32c functions
30 require M here. See Castagnoli93.
31 Module will be libcrc32c.
32
33#
34# compression support is select'ed if needed
35#
36config ZLIB_INFLATE
37 tristate
38
39config ZLIB_DEFLATE
40 tristate
41
f14f75b8
JS
42#
43# Generic allocator support is selected if needed
44#
45config GENERIC_ALLOCATOR
46 boolean
47
1da177e4
LT
48#
49# reed solomon support is select'ed if needed
50#
51config REED_SOLOMON
52 tristate
53
54config REED_SOLOMON_ENC8
55 boolean
56
57config REED_SOLOMON_DEC8
58 boolean
59
60config REED_SOLOMON_ENC16
61 boolean
62
63config REED_SOLOMON_DEC16
64 boolean
65
f7704347
DM
66#
67# Textsearch support is select'ed if needed
68#
2de4ff7b 69config TEXTSEARCH
f7704347 70 boolean
1da177e4 71
df3fb93a 72config TEXTSEARCH_KMP
f7704347 73 tristate
df3fb93a 74
8082e4ed 75config TEXTSEARCH_BM
29cb9f9c 76 tristate
8082e4ed 77
6408f79c 78config TEXTSEARCH_FSM
f7704347 79 tristate
6408f79c 80
2de4ff7b 81endmenu