Ver código fonte

lib: bzip2: move bzip2 files to lib/bzip2/ directory

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Masahiro Yamada 10 anos atrás
pai
commit
f071c50190

+ 1 - 5
lib/Makefile

@@ -11,14 +11,10 @@ obj-$(CONFIG_RSA) += rsa/
 obj-$(CONFIG_LZMA) += lzma/
 obj-$(CONFIG_LZO) += lzo/
 obj-$(CONFIG_ZLIB) += zlib/
+obj-$(CONFIG_BZIP2) += bzip2/
 obj-$(CONFIG_TIZEN) += tizen/
 
 obj-$(CONFIG_AES) += aes.o
-obj-$(CONFIG_BZIP2) += bzlib.o
-obj-$(CONFIG_BZIP2) += bzlib_crctable.o
-obj-$(CONFIG_BZIP2) += bzlib_decompress.o
-obj-$(CONFIG_BZIP2) += bzlib_randtable.o
-obj-$(CONFIG_BZIP2) += bzlib_huffman.o
 obj-$(CONFIG_USB_TTY) += circbuf.o
 obj-y += crc7.o
 obj-y += crc8.o

+ 2 - 0
lib/bzip2/Makefile

@@ -0,0 +1,2 @@
+obj-y += bzlib.o bzlib_crctable.o bzlib_decompress.o \
+	bzlib_randtable.o bzlib_huffman.o

+ 0 - 0
lib/bzlib.c → lib/bzip2/bzlib.c


+ 0 - 0
lib/bzlib_crctable.c → lib/bzip2/bzlib_crctable.c


+ 0 - 0
lib/bzlib_decompress.c → lib/bzip2/bzlib_decompress.c


+ 0 - 0
lib/bzlib_huffman.c → lib/bzip2/bzlib_huffman.c


+ 0 - 0
lib/bzlib_private.h → lib/bzip2/bzlib_private.h


+ 0 - 0
lib/bzlib_randtable.c → lib/bzip2/bzlib_randtable.c