blob: 91477b9dc924b53aef042e23522252dcfccbeada [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Library configuration
3#
4
5menu "Library routines"
6
Akinobu Mitaa5cfc1ec582006-12-08 02:36:25 -08007config BITREVERSE
8 tristate
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010config 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
Evgeniy Polyakov7657ec12005-08-17 15:17:26 +040018config 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
Ivo van Doorn3e7cbae2006-06-12 16:17:04 +020026config 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070034config CRC32
35 tristate "CRC32 functions"
36 default y
Akinobu Mita906d66d2006-12-08 02:36:25 -080037 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 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
Al Viroe65e1fc2006-09-12 03:04:40 -040053config AUDIT_GENERIC
54 bool
55 depends on AUDIT && !AUDIT_ARCH
56 default y
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#
59# compression support is select'ed if needed
60#
61config ZLIB_INFLATE
62 tristate
63
64config ZLIB_DEFLATE
65 tristate
66
67#
Jes Sorensenf14f75b2005-06-21 17:15:02 -070068# Generic allocator support is selected if needed
69#
70config GENERIC_ALLOCATOR
71 boolean
72
73#
Linus Torvalds1da177e2005-04-16 15:20:36 -070074# reed solomon support is select'ed if needed
75#
76config REED_SOLOMON
77 tristate
78
79config REED_SOLOMON_ENC8
80 boolean
81
82config REED_SOLOMON_DEC8
83 boolean
84
85config REED_SOLOMON_ENC16
86 boolean
87
88config REED_SOLOMON_DEC16
89 boolean
90
David S. Millerf7704342005-06-24 17:39:03 -070091#
92# Textsearch support is select'ed if needed
93#
Thomas Graf2de4ff72005-06-23 20:49:30 -070094config TEXTSEARCH
David S. Millerf7704342005-06-24 17:39:03 -070095 boolean
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Thomas Grafdf3fb932005-06-23 20:58:37 -070097config TEXTSEARCH_KMP
David S. Millerf7704342005-06-24 17:39:03 -070098 tristate
Thomas Grafdf3fb932005-06-23 20:58:37 -070099
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -0700100config TEXTSEARCH_BM
David S. Miller29cb9f92005-08-25 16:23:11 -0700101 tristate
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -0700102
Thomas Graf6408f792005-06-23 20:59:16 -0700103config TEXTSEARCH_FSM
David S. Millerf7704342005-06-24 17:39:03 -0700104 tristate
Thomas Graf6408f792005-06-23 20:59:16 -0700105
Ingo Molnar77ba89c2006-06-27 02:54:51 -0700106#
107# plist support is select#ed if needed
108#
109config PLIST
110 boolean
111
Al Viro5ea81762007-02-11 15:41:31 +0000112config HAS_IOMEM
Al Viroee36c2b2006-12-13 00:35:00 -0800113 boolean
Al Viro5ea81762007-02-11 15:41:31 +0000114 depends on !NO_IOMEM
115 default y
116
117config HAS_IOPORT
118 boolean
119 depends on HAS_IOMEM && !NO_IOPORT
Al Viroee36c2b2006-12-13 00:35:00 -0800120 default y
121
Thomas Graf2de4ff72005-06-23 20:49:30 -0700122endmenu