]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - lib/Kconfig
Merge branch 'audit.b28' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit...
[mirror_ubuntu-artful-kernel.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
41#
42# compression support is select'ed if needed
43#
44config ZLIB_INFLATE
45 tristate
46
47config ZLIB_DEFLATE
48 tristate
49
f14f75b8
JS
50#
51# Generic allocator support is selected if needed
52#
53config GENERIC_ALLOCATOR
54 boolean
55
1da177e4
LT
56#
57# reed solomon support is select'ed if needed
58#
59config REED_SOLOMON
60 tristate
61
62config REED_SOLOMON_ENC8
63 boolean
64
65config REED_SOLOMON_DEC8
66 boolean
67
68config REED_SOLOMON_ENC16
69 boolean
70
71config REED_SOLOMON_DEC16
72 boolean
73
f7704347
DM
74#
75# Textsearch support is select'ed if needed
76#
2de4ff7b 77config TEXTSEARCH
f7704347 78 boolean
1da177e4 79
df3fb93a 80config TEXTSEARCH_KMP
f7704347 81 tristate
df3fb93a 82
8082e4ed 83config TEXTSEARCH_BM
29cb9f9c 84 tristate
8082e4ed 85
6408f79c 86config TEXTSEARCH_FSM
f7704347 87 tristate
6408f79c 88
77ba89c5
IM
89#
90# plist support is select#ed if needed
91#
92config PLIST
93 boolean
94
2de4ff7b 95endmenu