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/Makefile | |
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/Makefile')
-rw-r--r-- | lib/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index e2a21d5a264f..d9ac5a414fa7 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
@@ -11,8 +11,7 @@ lib-y := ctype.o string.o vsprintf.o cmdline.o \ | |||
11 | rbtree.o radix-tree.o dump_stack.o \ | 11 | rbtree.o radix-tree.o dump_stack.o \ |
12 | idr.o int_sqrt.o extable.o prio_tree.o \ | 12 | idr.o int_sqrt.o extable.o prio_tree.o \ |
13 | sha1.o irq_regs.o reciprocal_div.o argv_split.o \ | 13 | sha1.o irq_regs.o reciprocal_div.o argv_split.o \ |
14 | proportions.o prio_heap.o ratelimit.o show_mem.o is_single_threaded.o \ | 14 | proportions.o prio_heap.o ratelimit.o show_mem.o is_single_threaded.o |
15 | decompress_inflate.o decompress_bunzip2.o decompress_unlzma.o | ||
16 | 15 | ||
17 | lib-$(CONFIG_MMU) += ioremap.o | 16 | lib-$(CONFIG_MMU) += ioremap.o |
18 | lib-$(CONFIG_SMP) += cpumask.o | 17 | lib-$(CONFIG_SMP) += cpumask.o |
@@ -66,6 +65,10 @@ obj-$(CONFIG_REED_SOLOMON) += reed_solomon/ | |||
66 | obj-$(CONFIG_LZO_COMPRESS) += lzo/ | 65 | obj-$(CONFIG_LZO_COMPRESS) += lzo/ |
67 | obj-$(CONFIG_LZO_DECOMPRESS) += lzo/ | 66 | obj-$(CONFIG_LZO_DECOMPRESS) += lzo/ |
68 | 67 | ||
68 | obj-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o | ||
69 | obj-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o | ||
70 | obj-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o | ||
71 | |||
69 | obj-$(CONFIG_TEXTSEARCH) += textsearch.o | 72 | obj-$(CONFIG_TEXTSEARCH) += textsearch.o |
70 | obj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o | 73 | obj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o |
71 | obj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o | 74 | obj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o |