]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - lib/Kconfig
[PATCH] bit reverse library
[mirror_ubuntu-artful-kernel.git] / lib / Kconfig
1 #
2 # Library configuration
3 #
4
5 menu "Library routines"
6
7 config BITREVERSE
8 tristate
9
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
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
26 config CRC32
27 tristate "CRC32 functions"
28 default y
29 help
30 This option is provided for the case where no in-kernel-tree
31 modules require CRC32 functions, but a module built outside the
32 kernel tree does. Such modules that use library CRC32 functions
33 require M here.
34
35 config LIBCRC32C
36 tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
37 help
38 This option is provided for the case where no in-kernel-tree
39 modules require CRC32c functions, but a module built outside the
40 kernel tree does. Such modules that use library CRC32c functions
41 require M here. See Castagnoli93.
42 Module will be libcrc32c.
43
44 config AUDIT_GENERIC
45 bool
46 depends on AUDIT && !AUDIT_ARCH
47 default y
48
49 #
50 # compression support is select'ed if needed
51 #
52 config ZLIB_INFLATE
53 tristate
54
55 config ZLIB_DEFLATE
56 tristate
57
58 #
59 # Generic allocator support is selected if needed
60 #
61 config GENERIC_ALLOCATOR
62 boolean
63
64 #
65 # reed solomon support is select'ed if needed
66 #
67 config REED_SOLOMON
68 tristate
69
70 config REED_SOLOMON_ENC8
71 boolean
72
73 config REED_SOLOMON_DEC8
74 boolean
75
76 config REED_SOLOMON_ENC16
77 boolean
78
79 config REED_SOLOMON_DEC16
80 boolean
81
82 #
83 # Textsearch support is select'ed if needed
84 #
85 config TEXTSEARCH
86 boolean
87
88 config TEXTSEARCH_KMP
89 tristate
90
91 config TEXTSEARCH_BM
92 tristate
93
94 config TEXTSEARCH_FSM
95 tristate
96
97 #
98 # plist support is select#ed if needed
99 #
100 config PLIST
101 boolean
102
103 endmenu