blob: 96d6e8ca8b70c4c90ea4a96f182dd1af16a72043 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Library configuration
3#
4
5menu "Library routines"
6
Akinobu Mitaa5cfc1e2006-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
Linus Torvalds1da177e2005-04-16 15:20:36 -070026config CRC32
27 tristate "CRC32 functions"
28 default y
Akinobu Mita906d66d2006-12-08 02:36:25 -080029 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 help
31 This option is provided for the case where no in-kernel-tree
32 modules require CRC32 functions, but a module built outside the
33 kernel tree does. Such modules that use library CRC32 functions
34 require M here.
35
36config LIBCRC32C
37 tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
38 help
39 This option is provided for the case where no in-kernel-tree
40 modules require CRC32c functions, but a module built outside the
41 kernel tree does. Such modules that use library CRC32c functions
42 require M here. See Castagnoli93.
43 Module will be libcrc32c.
44
Al Viroe65e1fc2006-09-12 03:04:40 -040045config AUDIT_GENERIC
46 bool
47 depends on AUDIT && !AUDIT_ARCH
48 default y
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#
51# compression support is select'ed if needed
52#
53config ZLIB_INFLATE
54 tristate
55
56config ZLIB_DEFLATE
57 tristate
58
59#
Jes Sorensenf14f75b2005-06-21 17:15:02 -070060# Generic allocator support is selected if needed
61#
62config GENERIC_ALLOCATOR
63 boolean
64
65#
Linus Torvalds1da177e2005-04-16 15:20:36 -070066# reed solomon support is select'ed if needed
67#
68config REED_SOLOMON
69 tristate
70
71config REED_SOLOMON_ENC8
72 boolean
73
74config REED_SOLOMON_DEC8
75 boolean
76
77config REED_SOLOMON_ENC16
78 boolean
79
80config REED_SOLOMON_DEC16
81 boolean
82
David S. Millerf7704342005-06-24 17:39:03 -070083#
84# Textsearch support is select'ed if needed
85#
Thomas Graf2de4ff72005-06-23 20:49:30 -070086config TEXTSEARCH
David S. Millerf7704342005-06-24 17:39:03 -070087 boolean
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Thomas Grafdf3fb932005-06-23 20:58:37 -070089config TEXTSEARCH_KMP
David S. Millerf7704342005-06-24 17:39:03 -070090 tristate
Thomas Grafdf3fb932005-06-23 20:58:37 -070091
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -070092config TEXTSEARCH_BM
David S. Miller29cb9f92005-08-25 16:23:11 -070093 tristate
Pablo Neira Ayuso8082e4e2005-08-25 16:12:22 -070094
Thomas Graf6408f792005-06-23 20:59:16 -070095config TEXTSEARCH_FSM
David S. Millerf7704342005-06-24 17:39:03 -070096 tristate
Thomas Graf6408f792005-06-23 20:59:16 -070097
Ingo Molnar77ba89c2006-06-27 02:54:51 -070098#
99# plist support is select#ed if needed
100#
101config PLIST
102 boolean
103
Al Viro5ea81762007-02-11 15:41:31 +0000104config HAS_IOMEM
Al Viroee36c2b2006-12-13 00:35:00 -0800105 boolean
Al Viro5ea81762007-02-11 15:41:31 +0000106 depends on !NO_IOMEM
107 default y
108
109config HAS_IOPORT
110 boolean
111 depends on HAS_IOMEM && !NO_IOPORT
Al Viroee36c2b2006-12-13 00:35:00 -0800112 default y
113
Heiko Carstens411f0f32007-05-06 14:49:09 -0700114config HAS_DMA
115 boolean
116 depends on !NO_DMA
117 default y
118
Thomas Graf2de4ff72005-06-23 20:49:30 -0700119endmenu