[NETPOLL]: e1000 netpoll tweak
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / lib / Kconfig
blobeeb429a52152bf51e34c5f67f96d8404d66ddf2e
2 # Library configuration
5 menu "Library routines"
7 config 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.
15 config CRC32
16         tristate "CRC32 functions"
17         default y
18         help
19           This option is provided for the case where no in-kernel-tree
20           modules require CRC32 functions, but a module built outside the
21           kernel tree does. Such modules that use library CRC32 functions
22           require M here.
24 config LIBCRC32C
25         tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
26         help
27           This option is provided for the case where no in-kernel-tree
28           modules require CRC32c functions, but a module built outside the
29           kernel tree does. Such modules that use library CRC32c functions
30           require M here.  See Castagnoli93.
31           Module will be libcrc32c.
34 # compression support is select'ed if needed
36 config ZLIB_INFLATE
37         tristate
39 config ZLIB_DEFLATE
40         tristate
43 # Generic allocator support is selected if needed
45 config GENERIC_ALLOCATOR
46         boolean
49 # reed solomon support is select'ed if needed
51 config REED_SOLOMON
52         tristate
53         
54 config REED_SOLOMON_ENC8
55         boolean
57 config REED_SOLOMON_DEC8
58         boolean
60 config REED_SOLOMON_ENC16
61         boolean
63 config REED_SOLOMON_DEC16
64         boolean
67 # Textsearch support is select'ed if needed
69 config TEXTSEARCH
70         boolean
72 config TEXTSEARCH_KMP
73         tristate
75 config TEXTSEARCH_FSM
76         tristate
78 endmenu