summaryrefslogtreecommitdiffstats
path: root/lib/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-11-28 12:50:28 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-11-29 21:12:27 +0100
commit5930f100aac7cebd4e45d4ec6c16e1cf5b2a1274 (patch)
tree25d5eb4517a90e275c2f64eaa110fdfd7ca82e72 /lib/Makefile
parentf400980638b4d6388689f298c8a538d3979dad39 (diff)
downloadbarebox-5930f100aac7cebd4e45d4ec6c16e1cf5b2a1274.tar.gz
barebox-5930f100aac7cebd4e45d4ec6c16e1cf5b2a1274.tar.xz
use kernel bunzip implementation
The kernel uncompression functions have a unified API. Switch to the kernel implementation to unify the different uncompression APIs. As a bonus the kernel implementation is much smaller. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile
index eccdfff141..b02191adba 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -15,7 +15,7 @@ obj-y += libgen.o
obj-y += stringlist.o
obj-y += recursive_action.o
obj-y += make_directory.o
-obj-$(CONFIG_BZLIB) += bzlib.o bzlib_crctable.o bzlib_decompress.o bzlib_huffman.o bzlib_randtable.o
+obj-$(CONFIG_BZLIB) += decompress_bunzip2.o
obj-$(CONFIG_ZLIB) += zlib.o gunzip.o
obj-$(CONFIG_CMDLINE_EDITING) += readline.o
obj-$(CONFIG_SIMPLE_READLINE) += readline_simple.o