Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only
0002 #
0003 # This is a modified version of zlib, which does all memory
0004 # allocation ahead of time.
0005 #
0006 # This is only the decompression, see zlib_deflate for the
0007 # the compression
0008 #
0009 # Decompression needs to be serialized for each memory
0010 # allocation.
0011 #
0012 # (The upsides of the simplification is that you can't get in
0013 # any nasty situations wrt memory management, and that the
0014 # uncompression can be done without blocking on allocation).
0015 #
0016 
0017 obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate.o
0018 
0019 zlib_inflate-objs := inffast.o inflate.o infutil.o \
0020                      inftrees.o inflate_syms.o