blob: 0d683559080ec7ad1ad552e2a9739a7f2ebd7d6c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Library configuration
3#
4
5menu "Library routines"
6
Akinobu Mitaa5cfc1e2006-12-08 02:36:25 -08007config BITREVERSE
8 tristate
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010config 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
Evgeniy Polyakov7657ec12005-08-17 15:17:26 +040018config 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070026config 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
Al Viroe65e1fc2006-09-12 03:04:40 -040044config AUDIT_GENERIC
45 bool
46 depends on AUDIT && !AUDIT_ARCH
47 default y
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#
50# compression support is select'ed if needed
51#
52config ZLIB_INFLATE
53 tristate
54
55config ZLIB_DEFLATE
56 tristate
57
58#
Jes Sorensenf14f75b2005-06-21 17:15:02 -070059# Generic allocator support is selected if needed
60#
61config GENERIC_ALLOCATOR
62 boolean
63
64#
Linus Torvalds1da177e2005-04-16 15:20:36 -070065# 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
David S. Millerf7704342005-06-24 17:39:03 -070082#
83# Textsearch support is select'ed if needed
84#
Thomas Graf2de4ff72005-06-23 20:49:30 -070085config TEXTSEARCH
David S. Millerf7704342005-06-24 17:39:03 -070086 boolean
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Thomas Grafdf3fb932005-06-23 20:58:37 -070088config TEXTSEARCH_KMP
David S. Millerf7704342005-06-24 17:39:03 -070089 tristate
Thomas Grafdf3fb932005-06-23 20:58:37 -070090
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -070091config TEXTSEARCH_BM
David S. Miller29cb9f92005-08-25 16:23:11 -070092 tristate
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -070093
Thomas Graf6408f792005-06-23 20:59:16 -070094config TEXTSEARCH_FSM
David S. Millerf7704342005-06-24 17:39:03 -070095 tristate
Thomas Graf6408f792005-06-23 20:59:16 -070096
Ingo Molnar77ba89c2006-06-27 02:54:51 -070097#
98# plist support is select#ed if needed
99#
100config PLIST
101 boolean
102
Thomas Graf2de4ff72005-06-23 20:49:30 -0700103endmenu