blob: 8cc8e8722a3fac4f363125f2009fbf65d50cca58 [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
11 def_bool n
12
13config GENERIC_FIND_NEXT_BIT
14 def_bool n
15
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
Ivo van Doorn3e7cbae2006-06-12 16:17:04 +020032config CRC_ITU_T
33 tristate "CRC ITU-T V.41 functions"
34 help
35 This option is provided for the case where no in-kernel-tree
36 modules require CRC ITU-T V.41 functions, but a module built outside
37 the kernel tree does. Such modules that use library CRC ITU-T V.41
38 functions require M here.
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040config CRC32
41 tristate "CRC32 functions"
42 default y
Akinobu Mita906d66d2006-12-08 02:36:25 -080043 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 help
45 This option is provided for the case where no in-kernel-tree
46 modules require CRC32 functions, but a module built outside the
47 kernel tree does. Such modules that use library CRC32 functions
48 require M here.
49
Jan Nikitenkoad241522007-07-17 04:04:03 -070050config CRC7
51 tristate "CRC7 functions"
52 help
53 This option is provided for the case where no in-kernel-tree
54 modules require CRC7 functions, but a module built outside
55 the kernel tree does. Such modules that use library CRC7
56 functions require M here.
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058config LIBCRC32C
59 tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
60 help
61 This option is provided for the case where no in-kernel-tree
62 modules require CRC32c functions, but a module built outside the
63 kernel tree does. Such modules that use library CRC32c functions
64 require M here. See Castagnoli93.
65 Module will be libcrc32c.
66
Al Viroe65e1fc2006-09-12 03:04:40 -040067config AUDIT_GENERIC
68 bool
69 depends on AUDIT && !AUDIT_ARCH
70 default y
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#
73# compression support is select'ed if needed
74#
75config ZLIB_INFLATE
76 tristate
77
78config ZLIB_DEFLATE
79 tristate
80
Richard Purdie64c70b12007-07-10 17:22:24 -070081config LZO_COMPRESS
82 tristate
83
84config LZO_DECOMPRESS
85 tristate
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#
Jes Sorensenf14f75b2005-06-21 17:15:02 -070088# Generic allocator support is selected if needed
89#
90config GENERIC_ALLOCATOR
91 boolean
92
93#
Linus Torvalds1da177e2005-04-16 15:20:36 -070094# reed solomon support is select'ed if needed
95#
96config REED_SOLOMON
97 tristate
98
99config REED_SOLOMON_ENC8
100 boolean
101
102config REED_SOLOMON_DEC8
103 boolean
104
105config REED_SOLOMON_ENC16
106 boolean
107
108config REED_SOLOMON_DEC16
109 boolean
110
David S. Millerf7704342005-06-24 17:39:03 -0700111#
112# Textsearch support is select'ed if needed
113#
Thomas Graf2de4ff72005-06-23 20:49:30 -0700114config TEXTSEARCH
David S. Millerf7704342005-06-24 17:39:03 -0700115 boolean
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Thomas Grafdf3fb932005-06-23 20:58:37 -0700117config TEXTSEARCH_KMP
David S. Millerf7704342005-06-24 17:39:03 -0700118 tristate
Thomas Grafdf3fb932005-06-23 20:58:37 -0700119
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -0700120config TEXTSEARCH_BM
David S. Miller29cb9f92005-08-25 16:23:11 -0700121 tristate
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -0700122
Thomas Graf6408f792005-06-23 20:59:16 -0700123config TEXTSEARCH_FSM
David S. Millerf7704342005-06-24 17:39:03 -0700124 tristate
Thomas Graf6408f792005-06-23 20:59:16 -0700125
Ingo Molnar77ba89c2006-06-27 02:54:51 -0700126#
127# plist support is select#ed if needed
128#
129config PLIST
130 boolean
131
Al Viro5ea81762007-02-11 15:41:31 +0000132config HAS_IOMEM
Al Viroee36c2b2006-12-13 00:35:00 -0800133 boolean
Al Viro5ea81762007-02-11 15:41:31 +0000134 depends on !NO_IOMEM
135 default y
136
137config HAS_IOPORT
138 boolean
139 depends on HAS_IOMEM && !NO_IOPORT
Al Viroee36c2b2006-12-13 00:35:00 -0800140 default y
141
Heiko Carstens411f0f32007-05-06 14:49:09 -0700142config HAS_DMA
143 boolean
144 depends on !NO_DMA
145 default y
146
Geert Uytterhoeven928923c2007-08-22 14:01:36 -0700147config CHECK_SIGNATURE
148 bool
149
David S. Millerd9b2b2a2008-02-13 16:56:49 -0800150config HAVE_LMB
151 boolean
152
Thomas Graf2de4ff72005-06-23 20:49:30 -0700153endmenu