blob: 27327d3e9f5410e70b28b7dc7a70c82b85795b9d [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#
3# This is a modified version of zlib, which does all memory
4# allocation ahead of time.
5#
6# This is only the decompression, see zlib_deflate for the
7# the compression
8#
9# Decompression needs to be serialized for each memory
10# allocation.
11#
12# (The upsides of the simplification is that you can't get in
13# any nasty situations wrt memory management, and that the
14# uncompression can be done without blocking on allocation).
15#
16
17obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate.o
18
David S. Millerd4faaec2007-10-11 22:15:08 -070019zlib_inflate-objs := inffast.o inflate.o infutil.o \
Richard Purdie4f3865f2006-06-22 14:47:34 -070020 inftrees.o inflate_syms.o