Get rid off pre-compiled lzma host util
authorPiotr Dymacz <pepe2k@gmail.com>
Tue, 30 Aug 2016 21:32:33 +0000 (23:32 +0200)
committerPiotr Dymacz <pepe2k@gmail.com>
Tue, 30 Aug 2016 21:32:33 +0000 (23:32 +0200)
commit2741e0cc8bbc72bbc1f008cff7ef65f182fea864
treef86e1ed891b4346e50be89855556ba415204ee50
parent0b21ffe293819d60c79205d94841e6a8d8d998c2
Get rid off pre-compiled lzma host util

Import lzma cli utility from LZMA SDK 4.65, from OpenWrt SDK.
Remove not needed code, clean rest little bit and enable
building it by default, but only for LZMA compressed images.

This finally fixes #57.
61 files changed:
.gitignore
host_util/darwin-x86_64/lzma [deleted file]
host_util/linux-x86_32/lzma [deleted file]
host_util/linux-x86_64/lzma [deleted file]
host_util/lzma/C/7zCrc.c [new file with mode: 0644]
host_util/lzma/C/7zCrc.h [new file with mode: 0644]
host_util/lzma/C/Alloc.c [new file with mode: 0644]
host_util/lzma/C/Alloc.h [new file with mode: 0644]
host_util/lzma/C/LzFind.c [new file with mode: 0644]
host_util/lzma/C/LzFind.h [new file with mode: 0644]
host_util/lzma/C/LzHash.h [new file with mode: 0644]
host_util/lzma/C/LzmaDec.c [new file with mode: 0644]
host_util/lzma/C/LzmaDec.h [new file with mode: 0644]
host_util/lzma/C/LzmaEnc.c [new file with mode: 0644]
host_util/lzma/C/LzmaEnc.h [new file with mode: 0644]
host_util/lzma/C/Types.h [new file with mode: 0644]
host_util/lzma/Common/CRC.cpp [new file with mode: 0644]
host_util/lzma/Common/C_FileIO.cpp [new file with mode: 0644]
host_util/lzma/Common/C_FileIO.h [new file with mode: 0644]
host_util/lzma/Common/Defs.h [new file with mode: 0644]
host_util/lzma/Common/MyCom.h [new file with mode: 0644]
host_util/lzma/Common/MyException.h [new file with mode: 0644]
host_util/lzma/Common/MyGuidDef.h [new file with mode: 0644]
host_util/lzma/Common/MyInitGuid.h [new file with mode: 0644]
host_util/lzma/Common/MyString.cpp [new file with mode: 0644]
host_util/lzma/Common/MyString.h [new file with mode: 0644]
host_util/lzma/Common/MyUnknown.h [new file with mode: 0644]
host_util/lzma/Common/MyVector.cpp [new file with mode: 0644]
host_util/lzma/Common/MyVector.h [new file with mode: 0644]
host_util/lzma/Common/MyWindows.h [new file with mode: 0644]
host_util/lzma/Common/NewHandler.cpp [new file with mode: 0644]
host_util/lzma/Common/NewHandler.h [new file with mode: 0644]
host_util/lzma/Common/StdAfx.h [new file with mode: 0644]
host_util/lzma/Common/StringConvert.cpp [new file with mode: 0644]
host_util/lzma/Common/StringConvert.h [new file with mode: 0644]
host_util/lzma/Common/StringToInt.cpp [new file with mode: 0644]
host_util/lzma/Common/StringToInt.h [new file with mode: 0644]
host_util/lzma/Common/Types.h [new file with mode: 0644]
host_util/lzma/Exception.h [new file with mode: 0644]
host_util/lzma/FileStreams.cpp [new file with mode: 0644]
host_util/lzma/FileStreams.h [new file with mode: 0644]
host_util/lzma/ICoder.h [new file with mode: 0644]
host_util/lzma/IDecl.h [new file with mode: 0644]
host_util/lzma/IStream.h [new file with mode: 0644]
host_util/lzma/InBuffer.cpp [new file with mode: 0644]
host_util/lzma/InBuffer.h [new file with mode: 0644]
host_util/lzma/LzmaDecoder.cpp [new file with mode: 0644]
host_util/lzma/LzmaDecoder.h [new file with mode: 0644]
host_util/lzma/LzmaEncoder.cpp [new file with mode: 0644]
host_util/lzma/LzmaEncoder.h [new file with mode: 0644]
host_util/lzma/OutBuffer.cpp [new file with mode: 0644]
host_util/lzma/OutBuffer.h [new file with mode: 0644]
host_util/lzma/StdAfx.h [new file with mode: 0644]
host_util/lzma/StreamUtils.cpp [new file with mode: 0644]
host_util/lzma/StreamUtils.h [new file with mode: 0644]
host_util/lzma/history.txt [new file with mode: 0755]
host_util/lzma/lzma.txt [new file with mode: 0755]
host_util/lzma/lzma_version.h [new file with mode: 0644]
host_util/lzma/lzmp.cpp [new file with mode: 0644]
host_util/lzma/makefile.gcc [new file with mode: 0644]
u-boot/Makefile