mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 09:08:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
19
lib/zlib_inflate/Makefile
Normal file
19
lib/zlib_inflate/Makefile
Normal file
|
@ -0,0 +1,19 @@
|
|||
#
|
||||
# This is a modified version of zlib, which does all memory
|
||||
# allocation ahead of time.
|
||||
#
|
||||
# This is only the decompression, see zlib_deflate for the
|
||||
# the compression
|
||||
#
|
||||
# Decompression needs to be serialized for each memory
|
||||
# allocation.
|
||||
#
|
||||
# (The upsides of the simplification is that you can't get in
|
||||
# any nasty situations wrt memory management, and that the
|
||||
# uncompression can be done without blocking on allocation).
|
||||
#
|
||||
|
||||
obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate.o
|
||||
|
||||
zlib_inflate-objs := inffast.o inflate.o infutil.o \
|
||||
inftrees.o inflate_syms.o
|
Loading…
Add table
Add a link
Reference in a new issue