blob: fd4118e097f0711c9c08cf6e08575678fcc5ec16 [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
Alexander van Heukelum19870de2008-04-25 13:12:53 +020010config GENERIC_FIND_FIRST_BIT
Jan Beulich9ba16082008-10-15 22:01:38 -070011 bool
Alexander van Heukelum19870de2008-04-25 13:12:53 +020012
13config GENERIC_FIND_NEXT_BIT
Jan Beulich9ba16082008-10-15 22:01:38 -070014 bool
Alexander van Heukelum19870de2008-04-25 13:12:53 +020015
Linus Torvalds1da177e2005-04-16 15:20:36 -070016config CRC_CCITT
17 tristate "CRC-CCITT functions"
18 help
19 This option is provided for the case where no in-kernel-tree
20 modules require CRC-CCITT functions, but a module built outside
21 the kernel tree does. Such modules that use library CRC-CCITT
22 functions require M here.
23
Evgeniy Polyakov7657ec12005-08-17 15:17:26 +040024config CRC16
25 tristate "CRC16 functions"
26 help
27 This option is provided for the case where no in-kernel-tree
28 modules require CRC16 functions, but a module built outside
29 the kernel tree does. Such modules that use library CRC16
30 functions require M here.
31
Martin K. Petersenf11f5942008-06-25 11:22:42 -040032config CRC_T10DIF
33 tristate "CRC calculation for the T10 Data Integrity Field"
34 help
35 This option is only needed if a module that's not in the
36 kernel tree needs to calculate CRC checks for use with the
37 SCSI data integrity subsystem.
38
Ivo van Doorn3e7cbae2006-06-12 16:17:04 +020039config CRC_ITU_T
40 tristate "CRC ITU-T V.41 functions"
41 help
42 This option is provided for the case where no in-kernel-tree
43 modules require CRC ITU-T V.41 functions, but a module built outside
44 the kernel tree does. Such modules that use library CRC ITU-T V.41
45 functions require M here.
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047config CRC32
48 tristate "CRC32 functions"
49 default y
Akinobu Mita906d66d2006-12-08 02:36:25 -080050 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 help
52 This option is provided for the case where no in-kernel-tree
53 modules require CRC32 functions, but a module built outside the
54 kernel tree does. Such modules that use library CRC32 functions
55 require M here.
56
Jan Nikitenkoad241522007-07-17 04:04:03 -070057config CRC7
58 tristate "CRC7 functions"
59 help
60 This option is provided for the case where no in-kernel-tree
61 modules require CRC7 functions, but a module built outside
62 the kernel tree does. Such modules that use library CRC7
63 functions require M here.
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065config LIBCRC32C
66 tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
Herbert Xu93027352008-11-13 22:05:13 +080067 select CRYPTO
Herbert Xu69c35ef2008-11-07 15:11:47 +080068 select CRYPTO_CRC32C
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 help
70 This option is provided for the case where no in-kernel-tree
71 modules require CRC32c functions, but a module built outside the
72 kernel tree does. Such modules that use library CRC32c functions
73 require M here. See Castagnoli93.
74 Module will be libcrc32c.
75
Al Viroe65e1fc2006-09-12 03:04:40 -040076config AUDIT_GENERIC
77 bool
78 depends on AUDIT && !AUDIT_ARCH
79 default y
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#
82# compression support is select'ed if needed
83#
84config ZLIB_INFLATE
85 tristate
86
87config ZLIB_DEFLATE
88 tristate
89
Richard Purdie64c70b12007-07-10 17:22:24 -070090config LZO_COMPRESS
91 tristate
92
93config LZO_DECOMPRESS
94 tristate
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#
Jes Sorensenf14f75b2005-06-21 17:15:02 -070097# Generic allocator support is selected if needed
98#
99config GENERIC_ALLOCATOR
100 boolean
101
102#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103# reed solomon support is select'ed if needed
104#
105config REED_SOLOMON
106 tristate
107
108config REED_SOLOMON_ENC8
109 boolean
110
111config REED_SOLOMON_DEC8
112 boolean
113
114config REED_SOLOMON_ENC16
115 boolean
116
117config REED_SOLOMON_DEC16
118 boolean
119
David S. Millerf7704342005-06-24 17:39:03 -0700120#
121# Textsearch support is select'ed if needed
122#
Thomas Graf2de4ff72005-06-23 20:49:30 -0700123config TEXTSEARCH
David S. Millerf7704342005-06-24 17:39:03 -0700124 boolean
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Thomas Grafdf3fb932005-06-23 20:58:37 -0700126config TEXTSEARCH_KMP
David S. Millerf7704342005-06-24 17:39:03 -0700127 tristate
Thomas Grafdf3fb932005-06-23 20:58:37 -0700128
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -0700129config TEXTSEARCH_BM
David S. Miller29cb9f92005-08-25 16:23:11 -0700130 tristate
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -0700131
Thomas Graf6408f792005-06-23 20:59:16 -0700132config TEXTSEARCH_FSM
David S. Millerf7704342005-06-24 17:39:03 -0700133 tristate
Thomas Graf6408f792005-06-23 20:59:16 -0700134
Ingo Molnar77ba89c2006-06-27 02:54:51 -0700135#
136# plist support is select#ed if needed
137#
138config PLIST
139 boolean
140
Al Viro5ea81762007-02-11 15:41:31 +0000141config HAS_IOMEM
Al Viroee36c2b2006-12-13 00:35:00 -0800142 boolean
Al Viro5ea81762007-02-11 15:41:31 +0000143 depends on !NO_IOMEM
144 default y
145
146config HAS_IOPORT
147 boolean
148 depends on HAS_IOMEM && !NO_IOPORT
Al Viroee36c2b2006-12-13 00:35:00 -0800149 default y
150
Heiko Carstens411f0f32007-05-06 14:49:09 -0700151config HAS_DMA
152 boolean
153 depends on !NO_DMA
154 default y
155
Geert Uytterhoeven928923c2007-08-22 14:01:36 -0700156config CHECK_SIGNATURE
157 bool
158
David S. Millerd9b2b2a2008-02-13 16:56:49 -0800159config HAVE_LMB
160 boolean
161
Thomas Graf2de4ff72005-06-23 20:49:30 -0700162endmenu