sparc: Export symbols for ZERO_PAGE usage in modules.
[linux-2.6/mini2440.git] / lib / Kconfig
blob8cc8e8722a3fac4f363125f2009fbf65d50cca58
2 # Library configuration
5 menu "Library routines"
7 config BITREVERSE
8         tristate
10 config GENERIC_FIND_FIRST_BIT
11         def_bool n
13 config GENERIC_FIND_NEXT_BIT
14         def_bool n
16 config 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.
24 config 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.
32 config 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.
40 config CRC32
41         tristate "CRC32 functions"
42         default y
43         select BITREVERSE
44         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.
50 config 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.
58 config 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.
67 config AUDIT_GENERIC
68         bool
69         depends on AUDIT && !AUDIT_ARCH
70         default y
73 # compression support is select'ed if needed
75 config ZLIB_INFLATE
76         tristate
78 config ZLIB_DEFLATE
79         tristate
81 config LZO_COMPRESS
82         tristate
84 config LZO_DECOMPRESS
85         tristate
88 # Generic allocator support is selected if needed
90 config GENERIC_ALLOCATOR
91         boolean
94 # reed solomon support is select'ed if needed
96 config REED_SOLOMON
97         tristate
98         
99 config REED_SOLOMON_ENC8
100         boolean
102 config REED_SOLOMON_DEC8
103         boolean
105 config REED_SOLOMON_ENC16
106         boolean
108 config REED_SOLOMON_DEC16
109         boolean
112 # Textsearch support is select'ed if needed
114 config TEXTSEARCH
115         boolean
117 config TEXTSEARCH_KMP
118         tristate
120 config TEXTSEARCH_BM
121         tristate
123 config TEXTSEARCH_FSM
124         tristate
127 # plist support is select#ed if needed
129 config PLIST
130         boolean
132 config HAS_IOMEM
133         boolean
134         depends on !NO_IOMEM
135         default y
137 config HAS_IOPORT
138         boolean
139         depends on HAS_IOMEM && !NO_IOPORT
140         default y
142 config HAS_DMA
143         boolean
144         depends on !NO_DMA
145         default y
147 config CHECK_SIGNATURE
148         bool
150 config HAVE_LMB
151         boolean
153 endmenu