diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-01-05 16:48:31 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-01-05 16:48:31 -0500 |
commit | c8531ab343dec88ed8005e403b1b304c710b7494 (patch) | |
tree | 40bef451a13ca4b3d54645e69d03c14631364e89 /lib/Kconfig | |
parent | 2e9f3bddcbc711bb14d86c6f068a779bf3710247 (diff) |
bzip2/lzma: proper Kconfig dependencies for the ramdisk options
Impact: Partial resolution of build failure
Make all the compression algorithms properly configurable, and make
sure the ramdisk options pull in the proper compression algorithms, as
they should.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 03c2c24b9083..e37f061fd32a 100644 --- a/lib/Kconfig +++ b/lib/Kconfig | |||
@@ -98,6 +98,19 @@ config LZO_DECOMPRESS | |||
98 | tristate | 98 | tristate |
99 | 99 | ||
100 | # | 100 | # |
101 | # These all provide a common interface (hence the apparent duplication with | ||
102 | # ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.) | ||
103 | # | ||
104 | config DECOMPRESS_GZIP | ||
105 | tristate | ||
106 | |||
107 | config DECOMPRESS_BZIP2 | ||
108 | tristate | ||
109 | |||
110 | config DECOMPRESS_LZMA | ||
111 | tristate | ||
112 | |||
113 | # | ||
101 | # Generic allocator support is selected if needed | 114 | # Generic allocator support is selected if needed |
102 | # | 115 | # |
103 | config GENERIC_ALLOCATOR | 116 | config GENERIC_ALLOCATOR |