summaryrefslogtreecommitdiffstats
path: root/lib/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-11-28 21:40:58 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-11-29 21:12:42 +0100
commiteb1c2e7de651b90f12864303ec965084d7206761 (patch)
tree36f511876f2eae55d269ee606e8b01bfe112639b /lib/Makefile
parent83d0904980531a4ac96ebc1f5becc52422536dbe (diff)
downloadbarebox-eb1c2e7de651b90f12864303ec965084d7206761.tar.gz
barebox-eb1c2e7de651b90f12864303ec965084d7206761.tar.xz
Add generic uncompress function
uncompress() has the same prototype as the various kernel decompress functions. It automatically detects the compression type and selects the correct uncompress function. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile
index f0abc21c22..e35d4b190b 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -33,3 +33,4 @@ obj-$(CONFIG_MD5) += md5.o
obj-$(CONFIG_SHA1) += sha1.o
obj-$(CONFIG_SHA256) += sha256.o
obj-$(CONFIG_FDT) += fdt/
+obj-y += uncompress.o