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