Fix ommission in checking whether we failed to prepare an image.
[linux-2.6/suspend2-2.6.18.git] / lib / Kconfig
blobcb31c4f4c65bbb6f03d57a0d4bd02d9bac32244e
2 # Library configuration
5 menu "Library routines"
7 config CRC_CCITT
8         tristate "CRC-CCITT functions"
9         help
10           This option is provided for the case where no in-kernel-tree
11           modules require CRC-CCITT functions, but a module built outside
12           the kernel tree does. Such modules that use library CRC-CCITT
13           functions require M here.
15 config CRC16
16         tristate "CRC16 functions"
17         help
18           This option is provided for the case where no in-kernel-tree
19           modules require CRC16 functions, but a module built outside
20           the kernel tree does. Such modules that use library CRC16
21           functions require M here.
23 config CRC32
24         tristate "CRC32 functions"
25         default y
26         help
27           This option is provided for the case where no in-kernel-tree
28           modules require CRC32 functions, but a module built outside the
29           kernel tree does. Such modules that use library CRC32 functions
30           require M here.
32 config LIBCRC32C
33         tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
34         help
35           This option is provided for the case where no in-kernel-tree
36           modules require CRC32c functions, but a module built outside the
37           kernel tree does. Such modules that use library CRC32c functions
38           require M here.  See Castagnoli93.
39           Module will be libcrc32c.
41 config AUDIT_GENERIC
42         bool
43         depends on AUDIT && !AUDIT_ARCH
44         default y
46 config DYN_PAGEFLAGS
47         bool
50 # compression support is select'ed if needed
52 config ZLIB_INFLATE
53         tristate
55 config ZLIB_DEFLATE
56         tristate
59 # Generic allocator support is selected if needed
61 config GENERIC_ALLOCATOR
62         boolean
65 # reed solomon support is select'ed if needed
67 config REED_SOLOMON
68         tristate
69         
70 config REED_SOLOMON_ENC8
71         boolean
73 config REED_SOLOMON_DEC8
74         boolean
76 config REED_SOLOMON_ENC16
77         boolean
79 config REED_SOLOMON_DEC16
80         boolean
83 # Textsearch support is select'ed if needed
85 config TEXTSEARCH
86         boolean
88 config TEXTSEARCH_KMP
89         tristate
91 config TEXTSEARCH_BM
92         tristate
94 config TEXTSEARCH_FSM
95         tristate
98 # plist support is select#ed if needed
100 config PLIST
101         boolean
103 endmenu