]> bbs.cooldavid.org Git - net-next-2.6.git/blame - lib/Kconfig
SPI: add 3wire mode flag
[net-next-2.6.git] / lib / Kconfig
CommitLineData
1da177e4
LT
1#
2# Library configuration
3#
4
5menu "Library routines"
6
a5cfc1ec
AM
7config BITREVERSE
8 tristate
9
1da177e4
LT
10config 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
7657ec1f
EP
18config 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
3e7cbae7
ID
26config 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
1da177e4
LT
34config CRC32
35 tristate "CRC32 functions"
36 default y
906d66df 37 select BITREVERSE
1da177e4
LT
38 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
44config LIBCRC32C
45 tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
46 help
47 This option is provided for the case where no in-kernel-tree
48 modules require CRC32c functions, but a module built outside the
49 kernel tree does. Such modules that use library CRC32c functions
50 require M here. See Castagnoli93.
51 Module will be libcrc32c.
52
e65e1fc2
AV
53config AUDIT_GENERIC
54 bool
55 depends on AUDIT && !AUDIT_ARCH
56 default y
57
1da177e4
LT
58#
59# compression support is select'ed if needed
60#
61config ZLIB_INFLATE
62 tristate
63
64config ZLIB_DEFLATE
65 tristate
66
64c70b1c
RP
67config LZO_COMPRESS
68 tristate
69
70config LZO_DECOMPRESS
71 tristate
72
f14f75b8
JS
73#
74# Generic allocator support is selected if needed
75#
76config GENERIC_ALLOCATOR
77 boolean
78
1da177e4
LT
79#
80# reed solomon support is select'ed if needed
81#
82config REED_SOLOMON
83 tristate
84
85config REED_SOLOMON_ENC8
86 boolean
87
88config REED_SOLOMON_DEC8
89 boolean
90
91config REED_SOLOMON_ENC16
92 boolean
93
94config REED_SOLOMON_DEC16
95 boolean
96
f7704347
DM
97#
98# Textsearch support is select'ed if needed
99#
2de4ff7b 100config TEXTSEARCH
f7704347 101 boolean
1da177e4 102
df3fb93a 103config TEXTSEARCH_KMP
f7704347 104 tristate
df3fb93a 105
8082e4ed 106config TEXTSEARCH_BM
29cb9f9c 107 tristate
8082e4ed 108
6408f79c 109config TEXTSEARCH_FSM
f7704347 110 tristate
6408f79c 111
77ba89c5
IM
112#
113# plist support is select#ed if needed
114#
115config PLIST
116 boolean
117
5ea81769 118config HAS_IOMEM
ee36c2bf 119 boolean
5ea81769
AV
120 depends on !NO_IOMEM
121 default y
122
123config HAS_IOPORT
124 boolean
125 depends on HAS_IOMEM && !NO_IOPORT
ee36c2bf
AV
126 default y
127
411f0f3e
HC
128config HAS_DMA
129 boolean
130 depends on !NO_DMA
131 default y
132
2de4ff7b 133endmenu