summaryrefslogtreecommitdiffstats
path: root/lib_generic
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-01-21 19:30:36 -0500
committerWolfgang Denk <wd@denx.de>2010-01-26 00:04:57 +0100
commit44431cabbb66e81a2d77642b6f7d39c6230ea4ba (patch)
tree21d0bf6f82d514cde39b19b375ca4d33a37234b7 /lib_generic
parent8edcde5e4e2e7f6bc7e277011fed71e64fd9d294 (diff)
downloadtalos-obmc-uboot-44431cabbb66e81a2d77642b6f7d39c6230ea4ba.tar.gz
talos-obmc-uboot-44431cabbb66e81a2d77642b6f7d39c6230ea4ba.zip
gzip/zlib: make features optional
If you really want to slim down U-Boot and you would rather use a higher compression scheme (like LZMA), it'd be nice to disable gzip/zlib since these code bases take up a significant amount of space. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'lib_generic')
-rw-r--r--lib_generic/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_generic/Makefile b/lib_generic/Makefile
index 4e4496a552..c45f07ca12 100644
--- a/lib_generic/Makefile
+++ b/lib_generic/Makefile
@@ -37,7 +37,7 @@ COBJS-y += crc32.o
COBJS-y += ctype.o
COBJS-y += display_options.o
COBJS-y += div64.o
-COBJS-y += gunzip.o
+COBJS-$(CONFIG_GZIP) += gunzip.o
COBJS-$(CONFIG_LMB) += lmb.o
COBJS-y += ldiv.o
COBJS-$(CONFIG_MD5) += md5.o
@@ -48,7 +48,7 @@ COBJS-y += string.o
COBJS-y += strmhz.o
COBJS-y += time.o
COBJS-y += vsprintf.o
-COBJS-y += zlib.o
+COBJS-$(CONFIG_ZLIB) += zlib.o
COBJS-$(CONFIG_RBTREE) += rbtree.o
COBJS := $(COBJS-y)
OpenPOWER on IntegriCloud