blob: 734ce95a93d121ab892fdadcf0f51a54079e5747 [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
Evgeniy Polyakov7657ec12005-08-17 15:17:26 +040015config 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070023config 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
Al Viroe65e1fc2006-09-12 03:04:40 -040041config AUDIT_GENERIC
42 bool
43 depends on AUDIT && !AUDIT_ARCH
44 default y
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#
47# compression support is select'ed if needed
48#
49config ZLIB_INFLATE
50 tristate
51
52config ZLIB_DEFLATE
53 tristate
54
55#
Jes Sorensenf14f75b2005-06-21 17:15:02 -070056# Generic allocator support is selected if needed
57#
58config GENERIC_ALLOCATOR
59 boolean
60
61#
Linus Torvalds1da177e2005-04-16 15:20:36 -070062# reed solomon support is select'ed if needed
63#
64config REED_SOLOMON
65 tristate
66
67config REED_SOLOMON_ENC8
68 boolean
69
70config REED_SOLOMON_DEC8
71 boolean
72
73config REED_SOLOMON_ENC16
74 boolean
75
76config REED_SOLOMON_DEC16
77 boolean
78
David S. Millerf7704342005-06-24 17:39:03 -070079#
80# Textsearch support is select'ed if needed
81#
Thomas Graf2de4ff72005-06-23 20:49:30 -070082config TEXTSEARCH
David S. Millerf7704342005-06-24 17:39:03 -070083 boolean
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Thomas Grafdf3fb932005-06-23 20:58:37 -070085config TEXTSEARCH_KMP
David S. Millerf7704342005-06-24 17:39:03 -070086 tristate
Thomas Grafdf3fb932005-06-23 20:58:37 -070087
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -070088config TEXTSEARCH_BM
David S. Miller29cb9f92005-08-25 16:23:11 -070089 tristate
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -070090
Thomas Graf6408f792005-06-23 20:59:16 -070091config TEXTSEARCH_FSM
David S. Millerf7704342005-06-24 17:39:03 -070092 tristate
Thomas Graf6408f792005-06-23 20:59:16 -070093
Ingo Molnar77ba89c2006-06-27 02:54:51 -070094#
95# plist support is select#ed if needed
96#
97config PLIST
98 boolean
99
Thomas Graf2de4ff72005-06-23 20:49:30 -0700100endmenu