Update to current git.
[linux-2.6/suspend2-head.git] / lib / Kconfig
blob9a3b0703ed957da77e3c6807ae4df5f382b71fcc
2 # Library configuration
5 menu "Library routines"
7 config BITREVERSE
8         tristate
10 config 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.
18 config 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.
26 config 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.
34 config CRC32
35         tristate "CRC32 functions"
36         default y
37         select BITREVERSE
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.
44 config 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.
53 config AUDIT_GENERIC
54         bool
55         depends on AUDIT && !AUDIT_ARCH
56         default y
58 config DYN_PAGEFLAGS
59         bool
62 # compression support is select'ed if needed
64 config ZLIB_INFLATE
65         tristate
67 config ZLIB_DEFLATE
68         tristate
71 # Generic allocator support is selected if needed
73 config GENERIC_ALLOCATOR
74         boolean
77 # reed solomon support is select'ed if needed
79 config REED_SOLOMON
80         tristate
81         
82 config REED_SOLOMON_ENC8
83         boolean
85 config REED_SOLOMON_DEC8
86         boolean
88 config REED_SOLOMON_ENC16
89         boolean
91 config REED_SOLOMON_DEC16
92         boolean
95 # Textsearch support is select'ed if needed
97 config TEXTSEARCH
98         boolean
100 config TEXTSEARCH_KMP
101         tristate
103 config TEXTSEARCH_BM
104         tristate
106 config TEXTSEARCH_FSM
107         tristate
110 # plist support is select#ed if needed
112 config PLIST
113         boolean
115 config HAS_IOMEM
116         boolean
117         depends on !NO_IOMEM
118         default y
120 config HAS_IOPORT
121         boolean
122         depends on HAS_IOMEM && !NO_IOPORT
123         default y
125 config HAS_DMA
126         boolean
127         depends on !NO_DMA
128         default y
130 endmenu