blob: b62f685f797fd7e7e4dc578eb0896f0e500685da [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
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
42#
Jes Sorensenf14f75b2005-06-21 17:15:02 -070043# Generic allocator support is selected if needed
44#
45config GENERIC_ALLOCATOR
46 boolean
47
48#
Linus Torvalds1da177e2005-04-16 15:20:36 -070049# 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
David S. Millerf7704342005-06-24 17:39:03 -070066#
67# Textsearch support is select'ed if needed
68#
Thomas Graf2de4ff72005-06-23 20:49:30 -070069config TEXTSEARCH
David S. Millerf7704342005-06-24 17:39:03 -070070 boolean
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Thomas Grafdf3fb932005-06-23 20:58:37 -070072config TEXTSEARCH_KMP
David S. Millerf7704342005-06-24 17:39:03 -070073 tristate
Thomas Grafdf3fb932005-06-23 20:58:37 -070074
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -070075config TEXTSEARCH_BM
76 depends on TEXTSEARCH
77 tristate "Boyer-Moore"
78 help
79 Say Y here if you want to be able to search text using the
80 Boyer-Moore textsearch algorithm.
81
82 To compile this code as a module, choose M here: the
83 module will be called ts_bm.
84
Thomas Graf6408f792005-06-23 20:59:16 -070085config TEXTSEARCH_FSM
David S. Millerf7704342005-06-24 17:39:03 -070086 tristate
Thomas Graf6408f792005-06-23 20:59:16 -070087
Thomas Graf2de4ff72005-06-23 20:49:30 -070088endmenu