blob: ba3d104994d914643e4c673b1058e0c4a57cd813 [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
Ivo van Doorn3e7cbae2006-06-12 16:17:04 +020026config CRC_ITU_T
27 tristate "CRC ITU-T V.41 functions"
28 help
29 This option is provided for the case where no in-kernel-tree
30 modules require CRC ITU-T V.41 functions, but a module built outside
31 the kernel tree does. Such modules that use library CRC ITU-T V.41
32 functions require M here.
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034config CRC32
35 tristate "CRC32 functions"
36 default y
Akinobu Mita906d66d2006-12-08 02:36:25 -080037 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 help
39 This option is provided for the case where no in-kernel-tree
40 modules require CRC32 functions, but a module built outside the
41 kernel tree does. Such modules that use library CRC32 functions
42 require M here.
43
Jan Nikitenkoad241522007-07-17 04:04:03 -070044config CRC7
45 tristate "CRC7 functions"
46 help
47 This option is provided for the case where no in-kernel-tree
48 modules require CRC7 functions, but a module built outside
49 the kernel tree does. Such modules that use library CRC7
50 functions require M here.
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052config LIBCRC32C
53 tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
54 help
55 This option is provided for the case where no in-kernel-tree
56 modules require CRC32c functions, but a module built outside the
57 kernel tree does. Such modules that use library CRC32c functions
58 require M here. See Castagnoli93.
59 Module will be libcrc32c.
60
Al Viroe65e1fc2006-09-12 03:04:40 -040061config AUDIT_GENERIC
62 bool
63 depends on AUDIT && !AUDIT_ARCH
64 default y
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#
67# compression support is select'ed if needed
68#
69config ZLIB_INFLATE
70 tristate
71
72config ZLIB_DEFLATE
73 tristate
74
Richard Purdie64c70b12007-07-10 17:22:24 -070075config LZO_COMPRESS
76 tristate
77
78config LZO_DECOMPRESS
79 tristate
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#
Jes Sorensenf14f75b2005-06-21 17:15:02 -070082# Generic allocator support is selected if needed
83#
84config GENERIC_ALLOCATOR
85 boolean
86
87#
Linus Torvalds1da177e2005-04-16 15:20:36 -070088# reed solomon support is select'ed if needed
89#
90config REED_SOLOMON
91 tristate
92
93config REED_SOLOMON_ENC8
94 boolean
95
96config REED_SOLOMON_DEC8
97 boolean
98
99config REED_SOLOMON_ENC16
100 boolean
101
102config REED_SOLOMON_DEC16
103 boolean
104
David S. Millerf7704342005-06-24 17:39:03 -0700105#
106# Textsearch support is select'ed if needed
107#
Thomas Graf2de4ff72005-06-23 20:49:30 -0700108config TEXTSEARCH
David S. Millerf7704342005-06-24 17:39:03 -0700109 boolean
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Thomas Grafdf3fb932005-06-23 20:58:37 -0700111config TEXTSEARCH_KMP
David S. Millerf7704342005-06-24 17:39:03 -0700112 tristate
Thomas Grafdf3fb932005-06-23 20:58:37 -0700113
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -0700114config TEXTSEARCH_BM
David S. Miller29cb9f92005-08-25 16:23:11 -0700115 tristate
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -0700116
Thomas Graf6408f792005-06-23 20:59:16 -0700117config TEXTSEARCH_FSM
David S. Millerf7704342005-06-24 17:39:03 -0700118 tristate
Thomas Graf6408f792005-06-23 20:59:16 -0700119
Ingo Molnar77ba89c2006-06-27 02:54:51 -0700120#
121# plist support is select#ed if needed
122#
123config PLIST
124 boolean
125
Al Viro5ea81762007-02-11 15:41:31 +0000126config HAS_IOMEM
Al Viroee36c2b2006-12-13 00:35:00 -0800127 boolean
Al Viro5ea81762007-02-11 15:41:31 +0000128 depends on !NO_IOMEM
129 default y
130
131config HAS_IOPORT
132 boolean
133 depends on HAS_IOMEM && !NO_IOPORT
Al Viroee36c2b2006-12-13 00:35:00 -0800134 default y
135
Heiko Carstens411f0f32007-05-06 14:49:09 -0700136config HAS_DMA
137 boolean
138 depends on !NO_DMA
139 default y
140
Geert Uytterhoeven928923c2007-08-22 14:01:36 -0700141config CHECK_SIGNATURE
142 bool
143
Thomas Graf2de4ff72005-06-23 20:49:30 -0700144endmenu