brintos

brintos / linux-shallow public Read only

0
0
Text · 599 B · 27327d3 Raw
21 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# This is a modified version of zlib, which does all memory4# allocation ahead of time.5#6# This is only the decompression, see zlib_deflate for the7# the compression8#9# Decompression needs to be serialized for each memory10# allocation.11#12# (The upsides of the simplification is that you can't get in13# any nasty situations wrt memory management, and that the14# uncompression can be done without blocking on allocation).15#16 17obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate.o18 19zlib_inflate-objs := inffast.o inflate.o infutil.o \20		     inftrees.o inflate_syms.o21