blob: f6299342b882d86f56b70655879b5c8ba792f3d4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Library configuration
3#
4
5menu "Library routines"
6
7config CRC_CCITT
8tristate "CRC-CCITT functions"
9help
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
Evgeniy Polyakov7657ec12005-08-17 15:17:26 +040015config CRC16
16tristate "CRC16 functions"
17help
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070023config CRC32
24tristate "CRC32 functions"
25default y
26help
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
33tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
34help
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
45tristate
46
47config ZLIB_DEFLATE
48tristate
49
50#
Jes Sorensenf14f75b2005-06-21 17:15:02 -070051# Generic allocator support is selected if needed
52#
53config GENERIC_ALLOCATOR
54boolean
55
56#
Linus Torvalds1da177e2005-04-16 15:20:36 -070057# reed solomon support is select'ed if needed
58#
59config REED_SOLOMON
60tristate
61
62config REED_SOLOMON_ENC8
63boolean
64
65config REED_SOLOMON_DEC8
66boolean
67
68config REED_SOLOMON_ENC16
69boolean
70
71config REED_SOLOMON_DEC16
72boolean
73
David S. Millerf7704342005-06-24 17:39:03 -070074#
75# Textsearch support is select'ed if needed
76#
Thomas Graf2de4ff72005-06-23 20:49:30 -070077config TEXTSEARCH
David S. Millerf7704342005-06-24 17:39:03 -070078boolean
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Thomas Grafdf3fb932005-06-23 20:58:37 -070080config TEXTSEARCH_KMP
David S. Millerf7704342005-06-24 17:39:03 -070081tristate
Thomas Grafdf3fb932005-06-23 20:58:37 -070082
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -070083config TEXTSEARCH_BM
David S. Miller29cb9f92005-08-25 16:23:11 -070084tristate
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -070085
Thomas Graf6408f792005-06-23 20:59:16 -070086config TEXTSEARCH_FSM
David S. Millerf7704342005-06-24 17:39:03 -070087tristate
Thomas Graf6408f792005-06-23 20:59:16 -070088
Ingo Molnar77ba89c2006-06-27 02:54:51 -070089#
90# plist support is select#ed if needed
91#
92config PLIST
93boolean
94
Thomas Graf2de4ff72005-06-23 20:49:30 -070095endmenu