├── check_for_upgrade.sh ├── cleanup.sh ├── creating_ipkg_packages.htm ├── ddwrt-gui-extract.sh ├── ddwrt-gui-rebuild.sh ├── extract-firmware.sh ├── firmware_mod_kit.htm ├── firmware_mod_kit_version.txt ├── ipk_template ├── conffiles ├── control ├── debian_binary └── make_ipk.sh ├── ipkg_install.sh ├── ipkg_install_all.sh ├── ipkg_remove.sh ├── ipkg_remove_all.sh ├── old-build.sh ├── old-extract.sh ├── shared-ng.inc ├── shared.inc ├── src ├── Makefile.in ├── addpattern.c ├── asustrx.c ├── bff │ ├── Makefile │ ├── bff_huffman_decompress.c │ └── bffxtractor.py ├── binwalk-0.4.1 │ ├── docs │ │ └── README │ └── src │ │ ├── Makefile.in │ │ ├── binwalk.c │ │ ├── binwalk.h │ │ ├── common.c │ │ ├── common.h │ │ ├── configure │ │ ├── configure.ac │ │ ├── file-5.07.tar.gz │ │ ├── filter.c │ │ ├── filter.h │ │ ├── magic.binarch │ │ ├── magic.bincast │ │ ├── magic.binwalk │ │ ├── magic │ │ ├── magic.archives │ │ ├── magic.bootloaders │ │ ├── magic.compressed │ │ ├── magic.executables │ │ ├── magic.filesystems │ │ ├── magic.firmware │ │ └── magic.kernels │ │ ├── md5.c │ │ ├── md5.h │ │ ├── mparse.c │ │ ├── mparse.h │ │ ├── update.c │ │ └── update.h ├── binwalk-1.0 │ ├── docs │ │ ├── API │ │ ├── COPYING │ │ └── README │ └── src │ │ ├── bin │ │ ├── binwalk │ │ └── binwalk-script │ │ ├── binwalk │ │ ├── __init__.py │ │ ├── common.py │ │ ├── config.py │ │ ├── config │ │ │ └── extract.conf │ │ ├── extractor.py │ │ ├── filter.py │ │ ├── magic │ │ │ ├── binarch │ │ │ ├── bincast │ │ │ └── binwalk │ │ ├── parser.py │ │ ├── prettyprint.py │ │ ├── smartsig.py │ │ └── update.py │ │ ├── build │ │ ├── lib.linux-x86_64-2.7 │ │ │ └── binwalk │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── config.py │ │ │ │ ├── config │ │ │ │ └── extract.conf │ │ │ │ ├── extractor.py │ │ │ │ ├── filter.py │ │ │ │ ├── magic │ │ │ │ ├── binarch │ │ │ │ ├── bincast │ │ │ │ └── binwalk │ │ │ │ ├── parser.py │ │ │ │ ├── prettyprint.py │ │ │ │ ├── smartsig.py │ │ │ │ └── update.py │ │ └── scripts-2.7 │ │ │ └── binwalk │ │ ├── magic │ │ ├── archives │ │ ├── bootloaders │ │ ├── compressed │ │ ├── crypto │ │ ├── executables │ │ ├── filesystems │ │ ├── firmware │ │ ├── images │ │ ├── kernels │ │ ├── lzma │ │ └── sql │ │ ├── setup.py │ │ └── support │ │ └── lzma_gen.py ├── configure ├── configure.ac ├── cramfs-2.x │ ├── COPYING │ ├── GNUmakefile │ ├── NOTES │ ├── README │ ├── cramfsck.c │ ├── linux │ │ ├── cramfs_fs.h │ │ └── cramfs_fs_sb.h │ └── mkcramfs.c ├── cramfsswap │ ├── COPYING │ ├── Makefile │ ├── README │ ├── cramfsswap.1 │ ├── cramfsswap.c │ └── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── dirs │ │ ├── docs │ │ └── rules ├── crcalc │ ├── Makefile │ ├── README │ ├── crc.c │ ├── crc.h │ ├── crcalc.c │ ├── crcalc.h │ ├── md5.c │ ├── md5.h │ ├── patch.c │ └── patch.h ├── firmware-tools │ ├── Makefile │ ├── add_header.c │ ├── addpattern.c │ ├── airlink.c │ ├── bcm_tag.h │ ├── buffalo-enc.c │ ├── buffalo-lib.c │ ├── buffalo-lib.h │ ├── buffalo-tag.c │ ├── buffalo-tftp.c │ ├── csysimg.h │ ├── cyg_crc.h │ ├── cyg_crc16.c │ ├── cyg_crc32.c │ ├── dgfirmware.c │ ├── encode_crc.c │ ├── fix-u-media-header.c │ ├── fw.h │ ├── imagetag.c │ ├── imagetag.ggo │ ├── imagetag_cmdline.c │ ├── imagetag_cmdline.h │ ├── lzma2eva.c │ ├── makeamitbin.c │ ├── md5.c │ ├── md5.h │ ├── mkbrncmdline.c │ ├── mkbrnimg.c │ ├── mkcameofw.c │ ├── mkcasfw.c │ ├── mkchkimg.c │ ├── mkcsysimg.c │ ├── mkdapimg.c │ ├── mkdir615h1.c │ ├── mkdniimg.c │ ├── mkedimaximg.c │ ├── mkfwimage.c │ ├── mkfwimage2.c │ ├── mkmylofw.c │ ├── mkplanexfw.c │ ├── mktitanimg.c │ ├── mktitanimg.h │ ├── mktplinkfw.c │ ├── mkwrgimg.c │ ├── mkzcfw.c │ ├── mkzynfw.c │ ├── motorola-bin.c │ ├── myloader.h │ ├── nand_ecc.c │ ├── osbridge-crc.c │ ├── pc1crypt.c │ ├── ptgen.c │ ├── readme.txt │ ├── seama.c │ ├── seama.h │ ├── sha1.c │ ├── sha1.h │ ├── spw303v.c │ ├── srec2bin.c │ ├── trx.c │ ├── trx2edips.c │ ├── trx2usr.c │ ├── wndr3700.c │ ├── wrt400n.c │ ├── xorimage.c │ └── zynos.h ├── jffs2 │ ├── mkfs.jffs2 │ └── unjffs2 ├── lzma │ ├── .built │ ├── .unpacked │ ├── 7zC.txt │ ├── 7zFormat.txt │ ├── C │ │ ├── 7zip │ │ │ ├── Archive │ │ │ │ └── 7z_C │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ ├── 7zBuffer.c │ │ │ │ │ ├── 7zBuffer.h │ │ │ │ │ ├── 7zCrc.c │ │ │ │ │ ├── 7zCrc.h │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ ├── 7zMethodID.c │ │ │ │ │ ├── 7zMethodID.h │ │ │ │ │ ├── 7zTypes.h │ │ │ │ │ ├── 7z_C.dsp │ │ │ │ │ ├── 7z_C.dsw │ │ │ │ │ ├── makefile │ │ │ │ │ └── makefile.gcc │ │ │ ├── Common │ │ │ │ ├── FileStreams.cpp │ │ │ │ ├── FileStreams.h │ │ │ │ ├── InBuffer.cpp │ │ │ │ ├── InBuffer.h │ │ │ │ ├── OutBuffer.cpp │ │ │ │ ├── OutBuffer.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── StreamUtils.cpp │ │ │ │ └── StreamUtils.h │ │ │ ├── Compress │ │ │ │ ├── Branch │ │ │ │ │ ├── ARM.cpp │ │ │ │ │ ├── ARM.h │ │ │ │ │ ├── ARMThumb.cpp │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ ├── BranchARM.c │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ ├── BranchARMThumb.c │ │ │ │ │ ├── BranchARMThumb.h │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ ├── BranchIA64.c │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ ├── BranchPPC.c │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ ├── BranchSPARC.c │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ ├── BranchX86.c │ │ │ │ │ ├── BranchX86.h │ │ │ │ │ ├── IA64.cpp │ │ │ │ │ ├── IA64.h │ │ │ │ │ ├── PPC.cpp │ │ │ │ │ ├── PPC.h │ │ │ │ │ ├── SPARC.cpp │ │ │ │ │ ├── SPARC.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── x86.cpp │ │ │ │ │ ├── x86.h │ │ │ │ │ ├── x86_2.cpp │ │ │ │ │ └── x86_2.h │ │ │ │ ├── LZ │ │ │ │ │ ├── BinTree │ │ │ │ │ │ ├── BinTree.h │ │ │ │ │ │ ├── BinTree2.h │ │ │ │ │ │ ├── BinTree3.h │ │ │ │ │ │ ├── BinTree3Z.h │ │ │ │ │ │ ├── BinTree4.h │ │ │ │ │ │ ├── BinTree4b.h │ │ │ │ │ │ └── BinTreeMain.h │ │ │ │ │ ├── HashChain │ │ │ │ │ │ ├── HC.h │ │ │ │ │ │ ├── HC2.h │ │ │ │ │ │ ├── HC3.h │ │ │ │ │ │ ├── HC4.h │ │ │ │ │ │ ├── HC4b.h │ │ │ │ │ │ └── HCMain.h │ │ │ │ │ ├── IMatchFinder.h │ │ │ │ │ ├── LZInWindow.cpp │ │ │ │ │ ├── LZInWindow.h │ │ │ │ │ ├── LZOutWindow.cpp │ │ │ │ │ ├── LZOutWindow.h │ │ │ │ │ ├── Patricia │ │ │ │ │ │ ├── Pat.h │ │ │ │ │ │ ├── Pat2.h │ │ │ │ │ │ ├── Pat2H.h │ │ │ │ │ │ ├── Pat2R.h │ │ │ │ │ │ ├── Pat3H.h │ │ │ │ │ │ ├── Pat4H.h │ │ │ │ │ │ └── PatMain.h │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── LZMA │ │ │ │ │ ├── LZMA.h │ │ │ │ │ ├── LZMADecoder.cpp │ │ │ │ │ ├── LZMADecoder.h │ │ │ │ │ ├── LZMAEncoder.cpp │ │ │ │ │ ├── LZMAEncoder.h │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── LZMA_Alone │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ ├── LzmaRam.cpp │ │ │ │ │ ├── LzmaRam.h │ │ │ │ │ ├── LzmaRamDecode.c │ │ │ │ │ ├── LzmaRamDecode.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── LZMA_C │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaDecodeSize.c │ │ │ │ │ ├── LzmaStateDecode.c │ │ │ │ │ ├── LzmaStateDecode.h │ │ │ │ │ ├── LzmaStateTest.c │ │ │ │ │ ├── LzmaTest.c │ │ │ │ │ ├── makefile │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── LZMA_Lib │ │ │ │ │ ├── ZLib.cpp │ │ │ │ │ └── makefile │ │ │ │ └── RangeCoder │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ ├── RangeCoderBit.cpp │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ ├── RangeCoderBitTree.h │ │ │ │ │ ├── RangeCoderOpt.h │ │ │ │ │ └── StdAfx.h │ │ │ ├── ICoder.h │ │ │ └── IStream.h │ │ ├── Common │ │ │ ├── Alloc.cpp │ │ │ ├── Alloc.h │ │ │ ├── CRC.cpp │ │ │ ├── CRC.h │ │ │ ├── C_FileIO.cpp │ │ │ ├── C_FileIO.h │ │ │ ├── ComTry.h │ │ │ ├── CommandLineParser.cpp │ │ │ ├── CommandLineParser.h │ │ │ ├── Defs.h │ │ │ ├── MyCom.h │ │ │ ├── MyGuidDef.h │ │ │ ├── MyInitGuid.h │ │ │ ├── MyUnknown.h │ │ │ ├── MyWindows.h │ │ │ ├── NewHandler.cpp │ │ │ ├── NewHandler.h │ │ │ ├── StdAfx.h │ │ │ ├── String.cpp │ │ │ ├── String.h │ │ │ ├── StringConvert.cpp │ │ │ ├── StringConvert.h │ │ │ ├── StringToInt.cpp │ │ │ ├── StringToInt.h │ │ │ ├── Types.h │ │ │ ├── Vector.cpp │ │ │ └── Vector.h │ │ └── Windows │ │ │ ├── Defs.h │ │ │ ├── FileIO.cpp │ │ │ ├── FileIO.h │ │ │ └── StdAfx.h │ ├── CPL.html │ ├── CS │ │ └── 7zip │ │ │ ├── Common │ │ │ ├── CRC.cs │ │ │ ├── CommandLineParser.cs │ │ │ ├── InBuffer.cs │ │ │ └── OutBuffer.cs │ │ │ ├── Compress │ │ │ ├── LZ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ ├── LzBinTree.cs │ │ │ │ ├── LzInWindow.cs │ │ │ │ └── LzOutWindow.cs │ │ │ ├── LZMA │ │ │ │ ├── LzmaBase.cs │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ └── LzmaEncoder.cs │ │ │ ├── LzmaAlone │ │ │ │ ├── LzmaAlone.cs │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ ├── LzmaAlone.sln │ │ │ │ ├── LzmaBench.cs │ │ │ │ └── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.cs │ │ │ │ │ └── Settings.cs │ │ │ └── RangeCoder │ │ │ │ ├── RangeCoder.cs │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ └── RangeCoderBitTree.cs │ │ │ └── ICoder.cs │ ├── Java │ │ └── SevenZip │ │ │ ├── CRC.java │ │ │ ├── Compression │ │ │ ├── ICodeProgress.java │ │ │ ├── LZ │ │ │ │ ├── BinTree.java │ │ │ │ ├── InWindow.java │ │ │ │ └── OutWindow.java │ │ │ ├── LZMA │ │ │ │ ├── Base.java │ │ │ │ ├── Decoder.java │ │ │ │ └── Encoder.java │ │ │ └── RangeCoder │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ ├── Decoder.java │ │ │ │ └── Encoder.java │ │ │ ├── LzmaAlone.java │ │ │ └── LzmaBench.java │ ├── LGPL.txt │ ├── Methods.txt │ ├── history.txt │ └── lzma.txt ├── motorola-bin.c ├── others │ ├── Makefile │ ├── squashfs-2.0-nb4 │ │ ├── Makefile │ │ ├── nb4-mksquashfs │ │ │ ├── Makefile │ │ │ ├── getdelim.c │ │ │ ├── getdelim.h │ │ │ ├── getline.c │ │ │ ├── getline.h │ │ │ ├── lzma │ │ │ │ ├── compress │ │ │ │ │ ├── 7z.h │ │ │ │ │ ├── 7zapi.cpp │ │ │ │ │ ├── 7zapi.h │ │ │ │ │ ├── 7zlzma.cpp │ │ │ │ │ ├── AriBitCoder.cpp │ │ │ │ │ ├── AriBitCoder.h │ │ │ │ │ ├── AriConst.h │ │ │ │ │ ├── AriPrice.h │ │ │ │ │ ├── BinTree.h │ │ │ │ │ ├── BinTree2.h │ │ │ │ │ ├── BinTree2Main.h │ │ │ │ │ ├── BinTree3.h │ │ │ │ │ ├── BinTree3Main.h │ │ │ │ │ ├── BinTree3Z.h │ │ │ │ │ ├── BinTree3ZMain.h │ │ │ │ │ ├── BinTree4.h │ │ │ │ │ ├── BinTree4Main.h │ │ │ │ │ ├── BinTree4b.h │ │ │ │ │ ├── BinTree4bMain.h │ │ │ │ │ ├── BinTreeMF.h │ │ │ │ │ ├── BinTreeMFMain.h │ │ │ │ │ ├── BinTreeMain.h │ │ │ │ │ ├── BitTreeCoder.h │ │ │ │ │ ├── CRC.h │ │ │ │ │ ├── Const.h │ │ │ │ │ ├── IInOutStreams.cpp │ │ │ │ │ ├── IInOutStreams.h │ │ │ │ │ ├── InByte.cpp │ │ │ │ │ ├── InByte.h │ │ │ │ │ ├── LZMA.cpp │ │ │ │ │ ├── LZMA.h │ │ │ │ │ ├── LZMADecoder.cpp │ │ │ │ │ ├── LZMADecoder.h │ │ │ │ │ ├── LZMAEncoder.cpp │ │ │ │ │ ├── LZMAEncoder.h │ │ │ │ │ ├── LenCoder.cpp │ │ │ │ │ ├── LenCoder.h │ │ │ │ │ ├── LiteralCoder.cpp │ │ │ │ │ ├── LiteralCoder.h │ │ │ │ │ ├── OutByte.cpp │ │ │ │ │ ├── OutByte.h │ │ │ │ │ ├── Portable.h │ │ │ │ │ ├── RCDefs.h │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── WindowIn.cpp │ │ │ │ │ ├── WindowIn.h │ │ │ │ │ ├── WindowOut.cpp │ │ │ │ │ ├── WindowOut.h │ │ │ │ │ └── lzDecomp.cpp │ │ │ │ └── decompress │ │ │ │ │ ├── 7z.h │ │ │ │ │ ├── 7zlzma.c │ │ │ │ │ ├── AriBitCoder.h │ │ │ │ │ ├── BitTreeCoder.h │ │ │ │ │ ├── IInOutStreams.c │ │ │ │ │ ├── IInOutStreams.h │ │ │ │ │ ├── LZMA.h │ │ │ │ │ ├── LZMADecoder.c │ │ │ │ │ ├── LZMADecoder.h │ │ │ │ │ ├── LenCoder.h │ │ │ │ │ ├── LiteralCoder.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Portable.h │ │ │ │ │ ├── RCDefs.h │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ ├── WindowOut.h │ │ │ │ │ └── vxTypesOld.h │ │ │ └── squashfs │ │ │ │ ├── Makefile │ │ │ │ ├── mksquashfs.c │ │ │ │ ├── mksquashfs.h │ │ │ │ ├── read_fs.c │ │ │ │ ├── read_fs.h │ │ │ │ ├── sort.c │ │ │ │ ├── squashfs_fs.h │ │ │ │ ├── squashfs_fs_i.h │ │ │ │ └── squashfs_fs_sb.h │ │ └── nb4-unsquashfs │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── brcm-lzma │ │ │ ├── 7z.h │ │ │ ├── 7zlzma.c │ │ │ ├── AriBitCoder.h │ │ │ ├── BitTreeCoder.h │ │ │ ├── IInOutStreams.c │ │ │ ├── IInOutStreams.h │ │ │ ├── LZMA.h │ │ │ ├── LZMADecoder.c │ │ │ ├── LZMADecoder.h │ │ │ ├── LenCoder.h │ │ │ ├── LiteralCoder.h │ │ │ ├── Makefile │ │ │ ├── Portable.h │ │ │ ├── RCDefs.h │ │ │ ├── RangeCoder.h │ │ │ ├── WindowOut.h │ │ │ └── vxTypesOld.h │ │ │ ├── global.h │ │ │ ├── nb4-unsquash.c │ │ │ ├── read_fs.h │ │ │ └── squashfs_fs.h │ ├── squashfs-3.0-e2100 │ │ ├── Makefile │ │ ├── global.h │ │ ├── lzma │ │ │ ├── .built │ │ │ ├── .unpacked │ │ │ ├── 7zC.txt │ │ │ ├── 7zFormat.txt │ │ │ ├── C │ │ │ │ ├── 7zip │ │ │ │ │ ├── Archive │ │ │ │ │ │ └── 7z_C │ │ │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ │ │ ├── 7zBuffer.c │ │ │ │ │ │ │ ├── 7zBuffer.h │ │ │ │ │ │ │ ├── 7zCrc.c │ │ │ │ │ │ │ ├── 7zCrc.h │ │ │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ │ │ ├── 7zMethodID.c │ │ │ │ │ │ │ ├── 7zMethodID.h │ │ │ │ │ │ │ ├── 7zTypes.h │ │ │ │ │ │ │ ├── 7z_C.dsp │ │ │ │ │ │ │ ├── 7z_C.dsw │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ │ └── StreamUtils.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── Branch │ │ │ │ │ │ │ ├── ARM.cpp │ │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ │ ├── ARMThumb.cpp │ │ │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ │ │ ├── BranchARM.c │ │ │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ │ │ ├── BranchARMThumb.c │ │ │ │ │ │ │ ├── BranchARMThumb.h │ │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ │ ├── BranchIA64.c │ │ │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ │ │ ├── BranchPPC.c │ │ │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ │ │ ├── BranchSPARC.c │ │ │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ │ │ ├── BranchX86.c │ │ │ │ │ │ │ ├── BranchX86.h │ │ │ │ │ │ │ ├── IA64.cpp │ │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ │ ├── PPC.cpp │ │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ │ ├── SPARC.cpp │ │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── x86.cpp │ │ │ │ │ │ │ ├── x86.h │ │ │ │ │ │ │ ├── x86_2.cpp │ │ │ │ │ │ │ └── x86_2.h │ │ │ │ │ │ ├── LZ │ │ │ │ │ │ │ ├── BinTree │ │ │ │ │ │ │ │ ├── BinTree.h │ │ │ │ │ │ │ │ ├── BinTree2.h │ │ │ │ │ │ │ │ ├── BinTree3.h │ │ │ │ │ │ │ │ ├── BinTree3Z.h │ │ │ │ │ │ │ │ ├── BinTree4.h │ │ │ │ │ │ │ │ ├── BinTree4b.h │ │ │ │ │ │ │ │ └── BinTreeMain.h │ │ │ │ │ │ │ ├── HashChain │ │ │ │ │ │ │ │ ├── HC.h │ │ │ │ │ │ │ │ ├── HC2.h │ │ │ │ │ │ │ │ ├── HC3.h │ │ │ │ │ │ │ │ ├── HC4.h │ │ │ │ │ │ │ │ ├── HC4b.h │ │ │ │ │ │ │ │ └── HCMain.h │ │ │ │ │ │ │ ├── IMatchFinder.h │ │ │ │ │ │ │ ├── LZInWindow.cpp │ │ │ │ │ │ │ ├── LZInWindow.h │ │ │ │ │ │ │ ├── LZOutWindow.cpp │ │ │ │ │ │ │ ├── LZOutWindow.h │ │ │ │ │ │ │ ├── Patricia │ │ │ │ │ │ │ │ ├── Pat.h │ │ │ │ │ │ │ │ ├── Pat2.h │ │ │ │ │ │ │ │ ├── Pat2H.h │ │ │ │ │ │ │ │ ├── Pat2R.h │ │ │ │ │ │ │ │ ├── Pat3H.h │ │ │ │ │ │ │ │ ├── Pat4H.h │ │ │ │ │ │ │ │ └── PatMain.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── LZMA │ │ │ │ │ │ │ ├── LZMA.h │ │ │ │ │ │ │ ├── LZMADecoder.cpp │ │ │ │ │ │ │ ├── LZMADecoder.h │ │ │ │ │ │ │ ├── LZMAEncoder.cpp │ │ │ │ │ │ │ ├── LZMAEncoder.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ │ ├── LzmaRam.cpp │ │ │ │ │ │ │ ├── LzmaRam.h │ │ │ │ │ │ │ ├── LzmaRamDecode.c │ │ │ │ │ │ │ ├── LzmaRamDecode.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ │ ├── LZMA_C │ │ │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ │ │ ├── LzmaDecodeSize.c │ │ │ │ │ │ │ ├── LzmaStateDecode.c │ │ │ │ │ │ │ ├── LzmaStateDecode.h │ │ │ │ │ │ │ ├── LzmaStateTest.c │ │ │ │ │ │ │ ├── LzmaTest.c │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ │ ├── LZMA_Lib │ │ │ │ │ │ │ ├── ZLib.cpp │ │ │ │ │ │ │ └── makefile │ │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ │ ├── RangeCoderBit.cpp │ │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ │ ├── RangeCoderBitTree.h │ │ │ │ │ │ │ ├── RangeCoderOpt.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── ICoder.h │ │ │ │ │ └── IStream.h │ │ │ │ ├── Common │ │ │ │ │ ├── Alloc.cpp │ │ │ │ │ ├── Alloc.h │ │ │ │ │ ├── CRC.cpp │ │ │ │ │ ├── CRC.h │ │ │ │ │ ├── C_FileIO.cpp │ │ │ │ │ ├── C_FileIO.h │ │ │ │ │ ├── ComTry.h │ │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ │ ├── CommandLineParser.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── MyCom.h │ │ │ │ │ ├── MyGuidDef.h │ │ │ │ │ ├── MyInitGuid.h │ │ │ │ │ ├── MyUnknown.h │ │ │ │ │ ├── MyWindows.h │ │ │ │ │ ├── NewHandler.cpp │ │ │ │ │ ├── NewHandler.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── String.cpp │ │ │ │ │ ├── String.h │ │ │ │ │ ├── StringConvert.cpp │ │ │ │ │ ├── StringConvert.h │ │ │ │ │ ├── StringToInt.cpp │ │ │ │ │ ├── StringToInt.h │ │ │ │ │ ├── Types.h │ │ │ │ │ ├── Vector.cpp │ │ │ │ │ └── Vector.h │ │ │ │ └── Windows │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── FileIO.cpp │ │ │ │ │ ├── FileIO.h │ │ │ │ │ └── StdAfx.h │ │ │ ├── CPL.html │ │ │ ├── CS │ │ │ │ └── 7zip │ │ │ │ │ ├── Common │ │ │ │ │ ├── CRC.cs │ │ │ │ │ ├── CommandLineParser.cs │ │ │ │ │ ├── InBuffer.cs │ │ │ │ │ └── OutBuffer.cs │ │ │ │ │ ├── Compress │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ │ └── LzmaEncoder.cs │ │ │ │ │ ├── LzmaAlone │ │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ │ │ ├── LzmaAlone.sln │ │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ │ └── Settings.cs │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ │ └── ICoder.cs │ │ │ ├── Java │ │ │ │ └── SevenZip │ │ │ │ │ ├── CRC.java │ │ │ │ │ ├── Compression │ │ │ │ │ ├── ICodeProgress.java │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── BinTree.java │ │ │ │ │ │ ├── InWindow.java │ │ │ │ │ │ └── OutWindow.java │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── Base.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ ├── LzmaAlone.java │ │ │ │ │ └── LzmaBench.java │ │ │ ├── LGPL.txt │ │ │ ├── Methods.txt │ │ │ ├── history.txt │ │ │ └── lzma.txt │ │ ├── mksquashfs.c │ │ ├── mksquashfs.h │ │ ├── read_fs.c │ │ ├── read_fs.h │ │ ├── sort.c │ │ ├── sort.h │ │ ├── squashfs_fs.h │ │ └── unsquashfs.c │ ├── squashfs-3.2-r2-hg612-lzma │ │ ├── Makefile │ │ ├── lzma443 │ │ │ ├── 7zC.txt │ │ │ ├── 7zFormat.txt │ │ │ ├── C │ │ │ │ ├── 7zip │ │ │ │ │ ├── Archive │ │ │ │ │ │ └── 7z_C │ │ │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ │ │ ├── 7zBuffer.c │ │ │ │ │ │ │ ├── 7zBuffer.h │ │ │ │ │ │ │ ├── 7zCrc.c │ │ │ │ │ │ │ ├── 7zCrc.h │ │ │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ │ │ ├── 7zMethodID.c │ │ │ │ │ │ │ ├── 7zMethodID.h │ │ │ │ │ │ │ ├── 7zTypes.h │ │ │ │ │ │ │ ├── 7z_C.dsp │ │ │ │ │ │ │ ├── 7z_C.dsw │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ │ └── StreamUtils.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── Branch │ │ │ │ │ │ │ ├── ARM.cpp │ │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ │ ├── ARMThumb.cpp │ │ │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ │ │ ├── BranchARM.c │ │ │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ │ │ ├── BranchARMThumb.c │ │ │ │ │ │ │ ├── BranchARMThumb.h │ │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ │ ├── BranchIA64.c │ │ │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ │ │ ├── BranchPPC.c │ │ │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ │ │ ├── BranchSPARC.c │ │ │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ │ │ ├── BranchTypes.h │ │ │ │ │ │ │ ├── BranchX86.c │ │ │ │ │ │ │ ├── BranchX86.h │ │ │ │ │ │ │ ├── IA64.cpp │ │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ │ ├── PPC.cpp │ │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ │ ├── SPARC.cpp │ │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── x86.cpp │ │ │ │ │ │ │ ├── x86.h │ │ │ │ │ │ │ ├── x86_2.cpp │ │ │ │ │ │ │ └── x86_2.h │ │ │ │ │ │ ├── LZ │ │ │ │ │ │ │ ├── BinTree │ │ │ │ │ │ │ │ ├── BinTree.h │ │ │ │ │ │ │ │ ├── BinTree2.h │ │ │ │ │ │ │ │ ├── BinTree3.h │ │ │ │ │ │ │ │ ├── BinTree3Z.h │ │ │ │ │ │ │ │ ├── BinTree4.h │ │ │ │ │ │ │ │ └── BinTreeMain.h │ │ │ │ │ │ │ ├── HashChain │ │ │ │ │ │ │ │ ├── HC2.h │ │ │ │ │ │ │ │ ├── HC3.h │ │ │ │ │ │ │ │ ├── HC4.h │ │ │ │ │ │ │ │ └── HCMain.h │ │ │ │ │ │ │ ├── IMatchFinder.h │ │ │ │ │ │ │ ├── LZInWindow.cpp │ │ │ │ │ │ │ ├── LZInWindow.h │ │ │ │ │ │ │ ├── LZOutWindow.cpp │ │ │ │ │ │ │ ├── LZOutWindow.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── LZMA │ │ │ │ │ │ │ ├── LZMA.h │ │ │ │ │ │ │ ├── LZMADecoder.cpp │ │ │ │ │ │ │ ├── LZMADecoder.h │ │ │ │ │ │ │ ├── LZMAEncoder.cpp │ │ │ │ │ │ │ ├── LZMAEncoder.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ │ ├── LzmaRam.cpp │ │ │ │ │ │ │ ├── LzmaRam.h │ │ │ │ │ │ │ ├── LzmaRamDecode.c │ │ │ │ │ │ │ ├── LzmaRamDecode.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── comp.cc │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── makefile.gcc │ │ │ │ │ │ │ └── sqlzma.mk │ │ │ │ │ │ ├── LZMA_C │ │ │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ │ │ ├── LzmaDecodeSize.c │ │ │ │ │ │ │ ├── LzmaStateDecode.c │ │ │ │ │ │ │ ├── LzmaStateDecode.h │ │ │ │ │ │ │ ├── LzmaStateTest.c │ │ │ │ │ │ │ ├── LzmaTest.c │ │ │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ │ │ ├── kmod.mk │ │ │ │ │ │ │ ├── kmod │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ └── module.c │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── makefile.gcc │ │ │ │ │ │ │ ├── sqlzma.mk │ │ │ │ │ │ │ ├── testflags.c │ │ │ │ │ │ │ └── uncomp.c │ │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ │ ├── RangeCoderBit.cpp │ │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ │ ├── RangeCoderBitTree.h │ │ │ │ │ │ │ ├── RangeCoderOpt.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── ICoder.h │ │ │ │ │ └── IStream.h │ │ │ │ ├── Common │ │ │ │ │ ├── Alloc.cpp │ │ │ │ │ ├── Alloc.h │ │ │ │ │ ├── CRC.cpp │ │ │ │ │ ├── CRC.h │ │ │ │ │ ├── C_FileIO.cpp │ │ │ │ │ ├── C_FileIO.h │ │ │ │ │ ├── ComTry.h │ │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ │ ├── CommandLineParser.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── MyCom.h │ │ │ │ │ ├── MyGuidDef.h │ │ │ │ │ ├── MyInitGuid.h │ │ │ │ │ ├── MyUnknown.h │ │ │ │ │ ├── MyWindows.h │ │ │ │ │ ├── NewHandler.cpp │ │ │ │ │ ├── NewHandler.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── String.cpp │ │ │ │ │ ├── String.h │ │ │ │ │ ├── StringConvert.cpp │ │ │ │ │ ├── StringConvert.h │ │ │ │ │ ├── StringToInt.cpp │ │ │ │ │ ├── StringToInt.h │ │ │ │ │ ├── Types.h │ │ │ │ │ ├── Vector.cpp │ │ │ │ │ └── Vector.h │ │ │ │ └── Windows │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── FileIO.cpp │ │ │ │ │ ├── FileIO.h │ │ │ │ │ └── StdAfx.h │ │ │ ├── CPL.html │ │ │ ├── CS │ │ │ │ └── 7zip │ │ │ │ │ ├── Common │ │ │ │ │ ├── CRC.cs │ │ │ │ │ ├── CommandLineParser.cs │ │ │ │ │ ├── InBuffer.cs │ │ │ │ │ └── OutBuffer.cs │ │ │ │ │ ├── Compress │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ │ └── LzmaEncoder.cs │ │ │ │ │ ├── LzmaAlone │ │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ │ │ ├── LzmaAlone.sln │ │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ │ └── Settings.cs │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ │ └── ICoder.cs │ │ │ ├── Java │ │ │ │ └── SevenZip │ │ │ │ │ ├── CRC.java │ │ │ │ │ ├── Compression │ │ │ │ │ ├── ICodeProgress.java │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── BinTree.java │ │ │ │ │ │ ├── InWindow.java │ │ │ │ │ │ └── OutWindow.java │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── Base.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ ├── ICodeProgress.java │ │ │ │ │ ├── LzmaAlone.java │ │ │ │ │ └── LzmaBench.java │ │ │ ├── LGPL.txt │ │ │ ├── Methods.txt │ │ │ ├── history.txt │ │ │ ├── lzma.txt │ │ │ └── sqlzma1-443.patch │ │ ├── sqlzma.h │ │ ├── sqmagic.h │ │ └── squashfs3.2-r2 │ │ │ ├── ACKNOWLEDGEMENTS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── INSTALL │ │ │ ├── PERFORMANCE.README │ │ │ ├── README │ │ │ ├── README-3.2 │ │ │ ├── sqlzma2u-3.2-r2.patch │ │ │ └── squashfs-tools │ │ │ ├── Makefile │ │ │ ├── global.h │ │ │ ├── mksquashfs.c │ │ │ ├── mksquashfs.h │ │ │ ├── read_fs.c │ │ │ ├── read_fs.h │ │ │ ├── sort.c │ │ │ ├── sort.h │ │ │ ├── squashfs_fs.h │ │ │ └── unsquashfs.c │ ├── squashfs-3.2-r2-lzma │ │ ├── C │ │ │ ├── 7zCrc.c │ │ │ ├── 7zCrc.h │ │ │ ├── 7zCrcT8.c │ │ │ ├── Alloc.c │ │ │ ├── Alloc.h │ │ │ ├── Archive │ │ │ │ └── 7z │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ ├── 7zBuffer.c │ │ │ │ │ ├── 7zBuffer.h │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ ├── 7zMethodID.c │ │ │ │ │ ├── 7zMethodID.h │ │ │ │ │ ├── 7z_C.dsp │ │ │ │ │ ├── 7z_C.dsw │ │ │ │ │ ├── makefile │ │ │ │ │ └── makefile.gcc │ │ │ ├── Compress │ │ │ │ ├── Branch │ │ │ │ │ ├── BranchARM.c │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ ├── BranchARMThumb.c │ │ │ │ │ ├── BranchARMThumb.h │ │ │ │ │ ├── BranchIA64.c │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ ├── BranchPPC.c │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ ├── BranchSPARC.c │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ ├── BranchTypes.h │ │ │ │ │ ├── BranchX86.c │ │ │ │ │ ├── BranchX86.h │ │ │ │ │ ├── BranchX86_2.c │ │ │ │ │ └── BranchX86_2.h │ │ │ │ ├── Huffman │ │ │ │ │ ├── HuffmanEncode.c │ │ │ │ │ └── HuffmanEncode.h │ │ │ │ ├── Lz │ │ │ │ │ ├── LzHash.h │ │ │ │ │ ├── MatchFinder.c │ │ │ │ │ ├── MatchFinder.h │ │ │ │ │ ├── MatchFinderMt.c │ │ │ │ │ └── MatchFinderMt.h │ │ │ │ └── Lzma │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaDecodeSize.c │ │ │ │ │ ├── LzmaStateDecode.c │ │ │ │ │ ├── LzmaStateDecode.h │ │ │ │ │ ├── LzmaStateTest.c │ │ │ │ │ ├── LzmaTest.c │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ ├── kmod.mk │ │ │ │ │ ├── kmod │ │ │ │ │ └── uncomp.c │ │ │ │ │ ├── sqlzma.mk │ │ │ │ │ ├── testflags.c │ │ │ │ │ └── uncomp.c │ │ │ ├── CpuArch.h │ │ │ ├── IStream.h │ │ │ ├── Sort.c │ │ │ ├── Sort.h │ │ │ ├── Threads.c │ │ │ ├── Threads.h │ │ │ └── Types.h │ │ ├── CPP │ │ │ ├── 7zip │ │ │ │ ├── Archive │ │ │ │ │ ├── 7z │ │ │ │ │ │ ├── 7z.ico │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Archive.def │ │ │ │ │ ├── Archive2.def │ │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ │ ├── CrossThreadProgress.cpp │ │ │ │ │ │ ├── CrossThreadProgress.h │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ └── ParseProperties.h │ │ │ │ │ ├── DllExports2.cpp │ │ │ │ │ └── IArchive.h │ │ │ │ ├── Bundles │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ ├── Alone.dsp │ │ │ │ │ │ ├── Alone.dsw │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── Format7zExtractR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── resource.rc │ │ │ │ │ └── Format7zR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── resource.rc │ │ │ │ ├── Common │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ ├── MethodId.h │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ ├── OffsetStream.cpp │ │ │ │ │ ├── OffsetStream.h │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ └── VirtThread.h │ │ │ │ ├── Compress │ │ │ │ │ ├── Branch │ │ │ │ │ │ ├── ARM.cpp │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ ├── ARMThumb.cpp │ │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ │ ├── BCJ2Register.cpp │ │ │ │ │ │ ├── BCJRegister.cpp │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ │ ├── IA64.cpp │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ ├── PPC.cpp │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ ├── SPARC.cpp │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── x86.cpp │ │ │ │ │ │ ├── x86.h │ │ │ │ │ │ ├── x86_2.cpp │ │ │ │ │ │ └── x86_2.h │ │ │ │ │ ├── ByteSwap │ │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ │ ├── ByteSwap.h │ │ │ │ │ │ ├── ByteSwapRegister.cpp │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── CodecExports.cpp │ │ │ │ │ ├── Copy │ │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── LZOutWindow.cpp │ │ │ │ │ │ ├── LZOutWindow.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LZMA.h │ │ │ │ │ │ ├── LZMADecoder.cpp │ │ │ │ │ │ ├── LZMADecoder.h │ │ │ │ │ │ ├── LZMAEncoder.cpp │ │ │ │ │ │ ├── LZMAEncoder.h │ │ │ │ │ │ ├── LZMARegister.cpp │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ ├── LzmaBenchCon.cpp │ │ │ │ │ │ ├── LzmaBenchCon.h │ │ │ │ │ │ ├── LzmaRam.cpp │ │ │ │ │ │ ├── LzmaRam.h │ │ │ │ │ │ ├── LzmaRamDecode.c │ │ │ │ │ │ ├── LzmaRamDecode.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── comp.cc │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── makefile.gcc │ │ │ │ │ │ └── sqlzma.mk │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ ├── RangeCoderBit.cpp │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ ├── RangeCoderBitTree.h │ │ │ │ │ │ ├── RangeCoderOpt.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── ICoder.h │ │ │ │ ├── IDecl.h │ │ │ │ ├── IPassword.h │ │ │ │ ├── IProgress.h │ │ │ │ ├── IStream.h │ │ │ │ ├── MyVersion.h │ │ │ │ ├── MyVersionInfo.rc │ │ │ │ ├── PropID.h │ │ │ │ └── UI │ │ │ │ │ ├── Client7z │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ ├── Client7z.dsp │ │ │ │ │ ├── Client7z.dsw │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ └── makefile │ │ │ │ │ ├── Common │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ ├── DirItem.h │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ ├── Extract.h │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ ├── Property.h │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ ├── Update.cpp │ │ │ │ │ ├── Update.h │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ └── ZipRegistry.h │ │ │ │ │ └── Console │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ ├── List.cpp │ │ │ │ │ ├── List.h │ │ │ │ │ ├── Main.cpp │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ └── afxres.h │ │ │ ├── Build.mak │ │ │ ├── Common │ │ │ │ ├── AutoPtr.h │ │ │ │ ├── Buffer.h │ │ │ │ ├── CRC.cpp │ │ │ │ ├── C_FileIO.cpp │ │ │ │ ├── C_FileIO.h │ │ │ │ ├── ComTry.h │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ ├── CommandLineParser.h │ │ │ │ ├── Defs.h │ │ │ │ ├── DynamicBuffer.h │ │ │ │ ├── IntToString.cpp │ │ │ │ ├── IntToString.h │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ ├── ListFileUtils.h │ │ │ │ ├── MyCom.h │ │ │ │ ├── MyException.h │ │ │ │ ├── MyGuidDef.h │ │ │ │ ├── MyInitGuid.h │ │ │ │ ├── MyString.cpp │ │ │ │ ├── MyString.h │ │ │ │ ├── MyUnknown.h │ │ │ │ ├── MyVector.cpp │ │ │ │ ├── MyVector.h │ │ │ │ ├── MyWindows.h │ │ │ │ ├── NewHandler.cpp │ │ │ │ ├── NewHandler.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── StdInStream.cpp │ │ │ │ ├── StdInStream.h │ │ │ │ ├── StdOutStream.cpp │ │ │ │ ├── StdOutStream.h │ │ │ │ ├── StringConvert.cpp │ │ │ │ ├── StringConvert.h │ │ │ │ ├── StringToInt.cpp │ │ │ │ ├── StringToInt.h │ │ │ │ ├── Types.h │ │ │ │ ├── UTFConvert.cpp │ │ │ │ ├── UTFConvert.h │ │ │ │ ├── Wildcard.cpp │ │ │ │ └── Wildcard.h │ │ │ └── Windows │ │ │ │ ├── DLL.cpp │ │ │ │ ├── DLL.h │ │ │ │ ├── Defs.h │ │ │ │ ├── Error.cpp │ │ │ │ ├── Error.h │ │ │ │ ├── FileDir.cpp │ │ │ │ ├── FileDir.h │ │ │ │ ├── FileFind.cpp │ │ │ │ ├── FileFind.h │ │ │ │ ├── FileIO.cpp │ │ │ │ ├── FileIO.h │ │ │ │ ├── FileMapping.cpp │ │ │ │ ├── FileMapping.h │ │ │ │ ├── FileName.cpp │ │ │ │ ├── FileName.h │ │ │ │ ├── Handle.h │ │ │ │ ├── MemoryLock.cpp │ │ │ │ ├── MemoryLock.h │ │ │ │ ├── PropVariant.cpp │ │ │ │ ├── PropVariant.h │ │ │ │ ├── PropVariantConversions.cpp │ │ │ │ ├── PropVariantConversions.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── Synchronization.cpp │ │ │ │ ├── Synchronization.h │ │ │ │ ├── System.cpp │ │ │ │ ├── System.h │ │ │ │ ├── Thread.h │ │ │ │ └── Time.h │ │ ├── Makefile │ │ ├── sqlzma.h │ │ ├── sqmagic.h │ │ └── squashfs3.2-r2 │ │ │ ├── ACKNOWLEDGEMENTS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── INSTALL │ │ │ ├── OLD-READMEs │ │ │ ├── README-2.0 │ │ │ ├── README-2.1 │ │ │ ├── README-3.0 │ │ │ ├── README-3.1 │ │ │ └── README-AMD64 │ │ │ ├── PERFORMANCE.README │ │ │ ├── README │ │ │ ├── README-3.2 │ │ │ ├── sqlzma2u-3.2-r2.patch │ │ │ └── squashfs-tools │ │ │ ├── Makefile │ │ │ ├── global.h │ │ │ ├── mksquashfs.c │ │ │ ├── mksquashfs.h │ │ │ ├── read_fs.c │ │ │ ├── read_fs.h │ │ │ ├── sort.c │ │ │ ├── sort.h │ │ │ ├── squashfs_fs.h │ │ │ └── unsquashfs.c │ ├── squashfs-3.2-r2-rtn12 │ │ ├── Makefile │ │ ├── global.h │ │ ├── lzma_src │ │ │ └── C │ │ │ │ ├── Alloc.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ └── Types.h │ │ ├── mksquashfs.c │ │ ├── mksquashfs.h │ │ ├── read_fs.c │ │ ├── read_fs.h │ │ ├── sort.c │ │ ├── sort.h │ │ ├── sqlzma.c │ │ ├── sqlzma.h │ │ ├── sqmagic.h │ │ ├── squashfs_fs.h │ │ └── unsquashfs.c │ ├── squashfs-3.2-r2-wnr1000 │ │ ├── Makefile │ │ ├── global.h │ │ ├── lzma_src │ │ │ └── C │ │ │ │ ├── Alloc.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ └── Types.h │ │ ├── mksquashfs.c │ │ ├── mksquashfs.h │ │ ├── read_fs.c │ │ ├── read_fs.h │ │ ├── sort.c │ │ ├── sort.h │ │ ├── sqlzma.c │ │ ├── sqlzma.h │ │ ├── squashfs_fs.h │ │ └── unsquashfs.c │ ├── squashfs-3.2-r2 │ │ ├── Makefile │ │ ├── global.h │ │ ├── mksquashfs.c │ │ ├── mksquashfs.h │ │ ├── read_fs.c │ │ ├── read_fs.h │ │ ├── sort.c │ │ ├── sort.h │ │ ├── squashfs_fs.h │ │ └── unsquashfs.c │ ├── squashfs-3.3-grml-lzma │ │ ├── .tmpdeps │ │ ├── .topdeps │ │ ├── .topmsg │ │ ├── Makefile │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── control.modules.in │ │ │ ├── copyright │ │ │ ├── doc │ │ │ │ ├── en │ │ │ │ │ ├── mksquashfs.dbk │ │ │ │ │ └── unsquashfs.dbk │ │ │ │ └── po │ │ │ │ │ ├── mksquashfs.fr.add │ │ │ │ │ ├── mksquashfs.fr.po │ │ │ │ │ ├── mksquashfs.pot │ │ │ │ │ └── po4a.cfg │ │ │ ├── rules │ │ │ ├── rules.modules │ │ │ ├── squashfs-lzma-source.NEWS │ │ │ ├── squashfs-lzma-source.README.Debian │ │ │ ├── squashfs-lzma-source.docs │ │ │ ├── squashfs-lzma-source.links │ │ │ ├── squashfs-lzma-tools.README.Debian │ │ │ ├── squashfs-lzma-tools.dirs │ │ │ ├── squashfs-lzma-tools.install │ │ │ ├── squashfs-lzma-tools.manpages │ │ │ └── watch │ │ ├── ksquashfs │ │ │ ├── fs │ │ │ │ └── squashfs │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── inode.c │ │ │ │ │ ├── squashfs.h │ │ │ │ │ └── squashfs2_0.c │ │ │ └── include │ │ │ │ └── linux │ │ │ │ ├── squashfs_fs.h │ │ │ │ ├── squashfs_fs_i.h │ │ │ │ └── squashfs_fs_sb.h │ │ ├── lzma │ │ │ ├── 7zC.txt │ │ │ ├── 7zFormat.txt │ │ │ ├── C │ │ │ │ ├── 7zCrc.c │ │ │ │ ├── 7zCrc.h │ │ │ │ ├── 7zCrcT8.c │ │ │ │ ├── Alloc.c │ │ │ │ ├── Alloc.h │ │ │ │ ├── Archive │ │ │ │ │ └── 7z │ │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ │ ├── 7zBuffer.c │ │ │ │ │ │ ├── 7zBuffer.h │ │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ │ ├── 7zMethodID.c │ │ │ │ │ │ ├── 7zMethodID.h │ │ │ │ │ │ ├── 7z_C.dsp │ │ │ │ │ │ ├── 7z_C.dsw │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Compress │ │ │ │ │ ├── Branch │ │ │ │ │ │ ├── BranchARM.c │ │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ │ ├── BranchARMThumb.c │ │ │ │ │ │ ├── BranchARMThumb.h │ │ │ │ │ │ ├── BranchIA64.c │ │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ │ ├── BranchPPC.c │ │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ │ ├── BranchSPARC.c │ │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ │ ├── BranchTypes.h │ │ │ │ │ │ ├── BranchX86.c │ │ │ │ │ │ ├── BranchX86.h │ │ │ │ │ │ ├── BranchX86_2.c │ │ │ │ │ │ └── BranchX86_2.h │ │ │ │ │ ├── Huffman │ │ │ │ │ │ ├── HuffmanEncode.c │ │ │ │ │ │ └── HuffmanEncode.h │ │ │ │ │ ├── Lz │ │ │ │ │ │ ├── LzHash.h │ │ │ │ │ │ ├── MatchFinder.c │ │ │ │ │ │ ├── MatchFinder.h │ │ │ │ │ │ ├── MatchFinderMt.c │ │ │ │ │ │ └── MatchFinderMt.h │ │ │ │ │ └── Lzma │ │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ │ ├── LzmaDecodeSize.c │ │ │ │ │ │ ├── LzmaStateDecode.c │ │ │ │ │ │ ├── LzmaStateDecode.h │ │ │ │ │ │ ├── LzmaStateTest.c │ │ │ │ │ │ ├── LzmaTest.c │ │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ │ ├── kmod.mk │ │ │ │ │ │ ├── kmod │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── module.c │ │ │ │ │ │ ├── sqlzma.mk │ │ │ │ │ │ ├── testflags.c │ │ │ │ │ │ └── uncomp.c │ │ │ │ ├── CpuArch.h │ │ │ │ ├── IStream.h │ │ │ │ ├── Sort.c │ │ │ │ ├── Sort.h │ │ │ │ ├── Threads.c │ │ │ │ ├── Threads.h │ │ │ │ └── Types.h │ │ │ ├── CPP │ │ │ │ ├── 7zip │ │ │ │ │ ├── Archive │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ ├── 7z.ico │ │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Archive.def │ │ │ │ │ │ ├── Archive2.def │ │ │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ │ │ ├── CrossThreadProgress.cpp │ │ │ │ │ │ │ ├── CrossThreadProgress.h │ │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ │ └── ParseProperties.h │ │ │ │ │ │ ├── DllExports2.cpp │ │ │ │ │ │ └── IArchive.h │ │ │ │ │ ├── Bundles │ │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ │ ├── Alone.dsp │ │ │ │ │ │ │ ├── Alone.dsw │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ ├── Format7zExtractR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ └── Format7zR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ │ ├── OffsetStream.cpp │ │ │ │ │ │ ├── OffsetStream.h │ │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ │ └── VirtThread.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── Branch │ │ │ │ │ │ │ ├── ARM.cpp │ │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ │ ├── ARMThumb.cpp │ │ │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ │ │ ├── BCJ2Register.cpp │ │ │ │ │ │ │ ├── BCJRegister.cpp │ │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ │ │ ├── IA64.cpp │ │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ │ ├── PPC.cpp │ │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ │ ├── SPARC.cpp │ │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── x86.cpp │ │ │ │ │ │ │ ├── x86.h │ │ │ │ │ │ │ ├── x86_2.cpp │ │ │ │ │ │ │ └── x86_2.h │ │ │ │ │ │ ├── ByteSwap │ │ │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ │ │ ├── ByteSwap.h │ │ │ │ │ │ │ ├── ByteSwapRegister.cpp │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── CodecExports.cpp │ │ │ │ │ │ ├── Copy │ │ │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── LZ │ │ │ │ │ │ │ ├── LZOutWindow.cpp │ │ │ │ │ │ │ ├── LZOutWindow.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── LZMA │ │ │ │ │ │ │ ├── LZMA.h │ │ │ │ │ │ │ ├── LZMADecoder.cpp │ │ │ │ │ │ │ ├── LZMADecoder.h │ │ │ │ │ │ │ ├── LZMAEncoder.cpp │ │ │ │ │ │ │ ├── LZMAEncoder.h │ │ │ │ │ │ │ ├── LZMARegister.cpp │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ │ ├── LzmaBenchCon.cpp │ │ │ │ │ │ │ ├── LzmaBenchCon.h │ │ │ │ │ │ │ ├── LzmaRam.cpp │ │ │ │ │ │ │ ├── LzmaRam.h │ │ │ │ │ │ │ ├── LzmaRamDecode.c │ │ │ │ │ │ │ ├── LzmaRamDecode.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── comp.cc │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── makefile.gcc │ │ │ │ │ │ │ └── sqlzma.mk │ │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ │ ├── RangeCoderBit.cpp │ │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ │ ├── RangeCoderBitTree.h │ │ │ │ │ │ │ ├── RangeCoderOpt.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── ICoder.h │ │ │ │ │ ├── IDecl.h │ │ │ │ │ ├── IPassword.h │ │ │ │ │ ├── IProgress.h │ │ │ │ │ ├── IStream.h │ │ │ │ │ ├── MyVersion.h │ │ │ │ │ ├── MyVersionInfo.rc │ │ │ │ │ ├── PropID.h │ │ │ │ │ └── UI │ │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ │ ├── Client7z.dsp │ │ │ │ │ │ ├── Client7z.dsw │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── makefile │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ │ ├── DirItem.h │ │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ │ ├── Extract.h │ │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ │ ├── Update.cpp │ │ │ │ │ │ ├── Update.h │ │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ └── ZipRegistry.h │ │ │ │ │ │ └── Console │ │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ │ ├── List.cpp │ │ │ │ │ │ ├── List.h │ │ │ │ │ │ ├── Main.cpp │ │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ │ └── afxres.h │ │ │ │ ├── Build.mak │ │ │ │ ├── Common │ │ │ │ │ ├── AutoPtr.h │ │ │ │ │ ├── Buffer.h │ │ │ │ │ ├── CRC.cpp │ │ │ │ │ ├── C_FileIO.cpp │ │ │ │ │ ├── C_FileIO.h │ │ │ │ │ ├── ComTry.h │ │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ │ ├── CommandLineParser.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── DynamicBuffer.h │ │ │ │ │ ├── IntToString.cpp │ │ │ │ │ ├── IntToString.h │ │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ │ ├── ListFileUtils.h │ │ │ │ │ ├── MyCom.h │ │ │ │ │ ├── MyException.h │ │ │ │ │ ├── MyGuidDef.h │ │ │ │ │ ├── MyInitGuid.h │ │ │ │ │ ├── MyString.cpp │ │ │ │ │ ├── MyString.h │ │ │ │ │ ├── MyUnknown.h │ │ │ │ │ ├── MyVector.cpp │ │ │ │ │ ├── MyVector.h │ │ │ │ │ ├── MyWindows.h │ │ │ │ │ ├── NewHandler.cpp │ │ │ │ │ ├── NewHandler.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── StdInStream.cpp │ │ │ │ │ ├── StdInStream.h │ │ │ │ │ ├── StdOutStream.cpp │ │ │ │ │ ├── StdOutStream.h │ │ │ │ │ ├── StringConvert.cpp │ │ │ │ │ ├── StringConvert.h │ │ │ │ │ ├── StringToInt.cpp │ │ │ │ │ ├── StringToInt.h │ │ │ │ │ ├── Types.h │ │ │ │ │ ├── UTFConvert.cpp │ │ │ │ │ ├── UTFConvert.h │ │ │ │ │ ├── Wildcard.cpp │ │ │ │ │ └── Wildcard.h │ │ │ │ └── Windows │ │ │ │ │ ├── DLL.cpp │ │ │ │ │ ├── DLL.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── Error.cpp │ │ │ │ │ ├── Error.h │ │ │ │ │ ├── FileDir.cpp │ │ │ │ │ ├── FileDir.h │ │ │ │ │ ├── FileFind.cpp │ │ │ │ │ ├── FileFind.h │ │ │ │ │ ├── FileIO.cpp │ │ │ │ │ ├── FileIO.h │ │ │ │ │ ├── FileMapping.cpp │ │ │ │ │ ├── FileMapping.h │ │ │ │ │ ├── FileName.cpp │ │ │ │ │ ├── FileName.h │ │ │ │ │ ├── Handle.h │ │ │ │ │ ├── MemoryLock.cpp │ │ │ │ │ ├── MemoryLock.h │ │ │ │ │ ├── PropVariant.cpp │ │ │ │ │ ├── PropVariant.h │ │ │ │ │ ├── PropVariantConversions.cpp │ │ │ │ │ ├── PropVariantConversions.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ ├── Synchronization.h │ │ │ │ │ ├── System.cpp │ │ │ │ │ ├── System.h │ │ │ │ │ ├── Thread.h │ │ │ │ │ └── Time.h │ │ │ ├── CS │ │ │ │ └── 7zip │ │ │ │ │ ├── Common │ │ │ │ │ ├── CRC.cs │ │ │ │ │ ├── CommandLineParser.cs │ │ │ │ │ ├── InBuffer.cs │ │ │ │ │ └── OutBuffer.cs │ │ │ │ │ ├── Compress │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ │ └── LzmaEncoder.cs │ │ │ │ │ ├── LzmaAlone │ │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ │ │ ├── LzmaAlone.sln │ │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ │ └── Settings.cs │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ │ └── ICoder.cs │ │ │ ├── Java │ │ │ │ └── SevenZip │ │ │ │ │ ├── CRC.java │ │ │ │ │ ├── Compression │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── BinTree.java │ │ │ │ │ │ ├── InWindow.java │ │ │ │ │ │ └── OutWindow.java │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── Base.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ ├── ICodeProgress.java │ │ │ │ │ ├── LzmaAlone.java │ │ │ │ │ └── LzmaBench.java │ │ │ ├── LGPL.txt │ │ │ ├── Methods.txt │ │ │ ├── history.txt │ │ │ ├── lzma.exe │ │ │ └── lzma.txt │ │ ├── sqlzma.h │ │ ├── sqlzma.txt │ │ ├── sqlzma1-449.patch │ │ ├── sqlzma2k-3.3.patch │ │ ├── sqlzma2u-3.3.patch │ │ ├── sqmagic.h │ │ └── squashfs3.3 │ │ │ ├── ACKNOWLEDGEMENTS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── INSTALL │ │ │ ├── OLD-READMEs │ │ │ ├── README-2.0 │ │ │ ├── README-2.1 │ │ │ ├── README-3.0 │ │ │ ├── README-3.1 │ │ │ ├── README-3.2 │ │ │ └── README-AMD64 │ │ │ ├── PERFORMANCE.README │ │ │ ├── README │ │ │ ├── README-3.3 │ │ │ ├── kernel-patches │ │ │ ├── linux-2.6.10 │ │ │ │ └── squashfs3.3-patch │ │ │ ├── linux-2.6.12 │ │ │ │ └── squashfs3.3-patch │ │ │ ├── linux-2.6.14 │ │ │ │ └── squashfs3.3-patch │ │ │ ├── linux-2.6.16 │ │ │ │ └── squashfs3.3-patch │ │ │ ├── linux-2.6.18 │ │ │ │ └── squashfs3.3-patch │ │ │ ├── linux-2.6.20 │ │ │ │ └── squashfs3.3-patch │ │ │ ├── linux-2.6.22 │ │ │ │ └── squashfs3.3-patch │ │ │ ├── linux-2.6.23 │ │ │ │ └── squashfs3.3-patch │ │ │ ├── linux-2.6.24 │ │ │ │ └── squashfs3.3-patch │ │ │ ├── linux-2.6.6 │ │ │ │ └── squashfs3.3-patch │ │ │ └── linux-2.6.8.1 │ │ │ │ └── squashfs3.3-patch │ │ │ └── squashfs-tools │ │ │ ├── Makefile │ │ │ ├── global.h │ │ │ ├── mksquashfs.c │ │ │ ├── mksquashfs.h │ │ │ ├── read_fs.c │ │ │ ├── read_fs.h │ │ │ ├── sort.c │ │ │ ├── sort.h │ │ │ ├── squashfs_fs.h │ │ │ └── unsquashfs.c │ ├── squashfs-3.3-lzma │ │ ├── C │ │ │ ├── 7zCrc.c │ │ │ ├── 7zCrc.h │ │ │ ├── 7zCrcT8.c │ │ │ ├── Alloc.c │ │ │ ├── Alloc.h │ │ │ ├── Archive │ │ │ │ └── 7z │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ ├── 7zBuffer.c │ │ │ │ │ ├── 7zBuffer.h │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ ├── 7zMethodID.c │ │ │ │ │ ├── 7zMethodID.h │ │ │ │ │ ├── 7z_C.dsp │ │ │ │ │ ├── 7z_C.dsw │ │ │ │ │ ├── makefile │ │ │ │ │ └── makefile.gcc │ │ │ ├── Compress │ │ │ │ ├── Branch │ │ │ │ │ ├── BranchARM.c │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ ├── BranchARMThumb.c │ │ │ │ │ ├── BranchARMThumb.h │ │ │ │ │ ├── BranchIA64.c │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ ├── BranchPPC.c │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ ├── BranchSPARC.c │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ ├── BranchTypes.h │ │ │ │ │ ├── BranchX86.c │ │ │ │ │ ├── BranchX86.h │ │ │ │ │ ├── BranchX86_2.c │ │ │ │ │ └── BranchX86_2.h │ │ │ │ ├── Huffman │ │ │ │ │ ├── HuffmanEncode.c │ │ │ │ │ └── HuffmanEncode.h │ │ │ │ ├── Lz │ │ │ │ │ ├── LzHash.h │ │ │ │ │ ├── MatchFinder.c │ │ │ │ │ ├── MatchFinder.h │ │ │ │ │ ├── MatchFinderMt.c │ │ │ │ │ └── MatchFinderMt.h │ │ │ │ └── Lzma │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaDecodeSize.c │ │ │ │ │ ├── LzmaStateDecode.c │ │ │ │ │ ├── LzmaStateDecode.h │ │ │ │ │ ├── LzmaStateTest.c │ │ │ │ │ ├── LzmaTest.c │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ ├── kmod.mk │ │ │ │ │ ├── kmod │ │ │ │ │ └── uncomp.c │ │ │ │ │ ├── sqlzma.mk │ │ │ │ │ ├── testflags.c │ │ │ │ │ └── uncomp.c │ │ │ ├── CpuArch.h │ │ │ ├── IStream.h │ │ │ ├── Sort.c │ │ │ ├── Sort.h │ │ │ ├── Threads.c │ │ │ ├── Threads.h │ │ │ └── Types.h │ │ ├── CPP │ │ │ ├── 7zip │ │ │ │ ├── Archive │ │ │ │ │ ├── 7z │ │ │ │ │ │ ├── 7z.ico │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Archive.def │ │ │ │ │ ├── Archive2.def │ │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ │ ├── CrossThreadProgress.cpp │ │ │ │ │ │ ├── CrossThreadProgress.h │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ └── ParseProperties.h │ │ │ │ │ ├── DllExports2.cpp │ │ │ │ │ └── IArchive.h │ │ │ │ ├── Bundles │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ ├── Alone.dsp │ │ │ │ │ │ ├── Alone.dsw │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── Format7zExtractR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── resource.rc │ │ │ │ │ └── Format7zR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── resource.rc │ │ │ │ ├── Common │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ ├── MethodId.h │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ ├── OffsetStream.cpp │ │ │ │ │ ├── OffsetStream.h │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ └── VirtThread.h │ │ │ │ ├── Compress │ │ │ │ │ ├── Branch │ │ │ │ │ │ ├── ARM.cpp │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ ├── ARMThumb.cpp │ │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ │ ├── BCJ2Register.cpp │ │ │ │ │ │ ├── BCJRegister.cpp │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ │ ├── IA64.cpp │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ ├── PPC.cpp │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ ├── SPARC.cpp │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── x86.cpp │ │ │ │ │ │ ├── x86.h │ │ │ │ │ │ ├── x86_2.cpp │ │ │ │ │ │ └── x86_2.h │ │ │ │ │ ├── ByteSwap │ │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ │ ├── ByteSwap.h │ │ │ │ │ │ ├── ByteSwapRegister.cpp │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── CodecExports.cpp │ │ │ │ │ ├── Copy │ │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── LZOutWindow.cpp │ │ │ │ │ │ ├── LZOutWindow.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LZMA.h │ │ │ │ │ │ ├── LZMADecoder.cpp │ │ │ │ │ │ ├── LZMADecoder.h │ │ │ │ │ │ ├── LZMAEncoder.cpp │ │ │ │ │ │ ├── LZMAEncoder.h │ │ │ │ │ │ ├── LZMARegister.cpp │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ ├── LzmaBenchCon.cpp │ │ │ │ │ │ ├── LzmaBenchCon.h │ │ │ │ │ │ ├── LzmaRam.cpp │ │ │ │ │ │ ├── LzmaRam.h │ │ │ │ │ │ ├── LzmaRamDecode.c │ │ │ │ │ │ ├── LzmaRamDecode.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── comp.cc │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── makefile.gcc │ │ │ │ │ │ └── sqlzma.mk │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ ├── RangeCoderBit.cpp │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ ├── RangeCoderBitTree.h │ │ │ │ │ │ ├── RangeCoderOpt.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── ICoder.h │ │ │ │ ├── IDecl.h │ │ │ │ ├── IPassword.h │ │ │ │ ├── IProgress.h │ │ │ │ ├── IStream.h │ │ │ │ ├── MyVersion.h │ │ │ │ ├── MyVersionInfo.rc │ │ │ │ ├── PropID.h │ │ │ │ └── UI │ │ │ │ │ ├── Client7z │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ ├── Client7z.dsp │ │ │ │ │ ├── Client7z.dsw │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ └── makefile │ │ │ │ │ ├── Common │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ ├── DirItem.h │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ ├── Extract.h │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ ├── Property.h │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ ├── Update.cpp │ │ │ │ │ ├── Update.h │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ └── ZipRegistry.h │ │ │ │ │ └── Console │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ ├── List.cpp │ │ │ │ │ ├── List.h │ │ │ │ │ ├── Main.cpp │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ └── afxres.h │ │ │ ├── Build.mak │ │ │ ├── Common │ │ │ │ ├── AutoPtr.h │ │ │ │ ├── Buffer.h │ │ │ │ ├── CRC.cpp │ │ │ │ ├── C_FileIO.cpp │ │ │ │ ├── C_FileIO.h │ │ │ │ ├── ComTry.h │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ ├── CommandLineParser.h │ │ │ │ ├── Defs.h │ │ │ │ ├── DynamicBuffer.h │ │ │ │ ├── IntToString.cpp │ │ │ │ ├── IntToString.h │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ ├── ListFileUtils.h │ │ │ │ ├── MyCom.h │ │ │ │ ├── MyException.h │ │ │ │ ├── MyGuidDef.h │ │ │ │ ├── MyInitGuid.h │ │ │ │ ├── MyString.cpp │ │ │ │ ├── MyString.h │ │ │ │ ├── MyUnknown.h │ │ │ │ ├── MyVector.cpp │ │ │ │ ├── MyVector.h │ │ │ │ ├── MyWindows.h │ │ │ │ ├── NewHandler.cpp │ │ │ │ ├── NewHandler.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── StdInStream.cpp │ │ │ │ ├── StdInStream.h │ │ │ │ ├── StdOutStream.cpp │ │ │ │ ├── StdOutStream.h │ │ │ │ ├── StringConvert.cpp │ │ │ │ ├── StringConvert.h │ │ │ │ ├── StringToInt.cpp │ │ │ │ ├── StringToInt.h │ │ │ │ ├── Types.h │ │ │ │ ├── UTFConvert.cpp │ │ │ │ ├── UTFConvert.h │ │ │ │ ├── Wildcard.cpp │ │ │ │ └── Wildcard.h │ │ │ └── Windows │ │ │ │ ├── DLL.cpp │ │ │ │ ├── DLL.h │ │ │ │ ├── Defs.h │ │ │ │ ├── Error.cpp │ │ │ │ ├── Error.h │ │ │ │ ├── FileDir.cpp │ │ │ │ ├── FileDir.h │ │ │ │ ├── FileFind.cpp │ │ │ │ ├── FileFind.h │ │ │ │ ├── FileIO.cpp │ │ │ │ ├── FileIO.h │ │ │ │ ├── FileMapping.cpp │ │ │ │ ├── FileMapping.h │ │ │ │ ├── FileName.cpp │ │ │ │ ├── FileName.h │ │ │ │ ├── Handle.h │ │ │ │ ├── MemoryLock.cpp │ │ │ │ ├── MemoryLock.h │ │ │ │ ├── PropVariant.cpp │ │ │ │ ├── PropVariant.h │ │ │ │ ├── PropVariantConversions.cpp │ │ │ │ ├── PropVariantConversions.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── Synchronization.cpp │ │ │ │ ├── Synchronization.h │ │ │ │ ├── System.cpp │ │ │ │ ├── System.h │ │ │ │ ├── Thread.h │ │ │ │ └── Time.h │ │ ├── Makefile │ │ ├── sqlzma.h │ │ ├── sqmagic.h │ │ ├── squashfs3.3 │ │ │ └── squashfs-tools │ │ │ │ ├── Makefile │ │ │ │ ├── global.h │ │ │ │ ├── mksquashfs.c │ │ │ │ ├── mksquashfs.h │ │ │ │ ├── read_fs.c │ │ │ │ ├── read_fs.h │ │ │ │ ├── sort.c │ │ │ │ ├── sort.h │ │ │ │ ├── squashfs_fs.h │ │ │ │ └── unsquashfs.c │ │ └── unuse │ │ │ ├── CS │ │ │ └── 7zip │ │ │ │ ├── Common │ │ │ │ ├── CRC.cs │ │ │ │ ├── CommandLineParser.cs │ │ │ │ ├── InBuffer.cs │ │ │ │ └── OutBuffer.cs │ │ │ │ ├── Compress │ │ │ │ ├── LZ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ ├── LZMA │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ └── LzmaEncoder.cs │ │ │ │ ├── LzmaAlone │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ │ ├── LzmaAlone.sln │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ └── Settings.cs │ │ │ │ └── RangeCoder │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ └── ICoder.cs │ │ │ └── Java │ │ │ └── SevenZip │ │ │ ├── CRC.java │ │ │ ├── Compression │ │ │ ├── LZ │ │ │ │ ├── BinTree.java │ │ │ │ ├── InWindow.java │ │ │ │ └── OutWindow.java │ │ │ ├── LZMA │ │ │ │ ├── Base.java │ │ │ │ ├── Decoder.java │ │ │ │ └── Encoder.java │ │ │ └── RangeCoder │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ ├── Decoder.java │ │ │ │ └── Encoder.java │ │ │ ├── ICodeProgress.java │ │ │ ├── LzmaAlone.java │ │ │ └── LzmaBench.java │ ├── squashfs-3.3 │ │ ├── Makefile │ │ ├── global.h │ │ ├── mksquashfs.c │ │ ├── mksquashfs.h │ │ ├── read_fs.c │ │ ├── read_fs.h │ │ ├── sort.c │ │ ├── sort.h │ │ ├── sqmagic.h │ │ ├── squashfs_fs.h │ │ └── unsquashfs.c │ ├── squashfs-3.4-cisco │ │ ├── Makefile │ │ ├── lzma │ │ │ ├── 7zC.txt │ │ │ ├── 7zFormat.txt │ │ │ ├── C │ │ │ │ ├── 7zBuf.c │ │ │ │ ├── 7zBuf.h │ │ │ │ ├── 7zBuf2.c │ │ │ │ ├── 7zCrc.c │ │ │ │ ├── 7zCrc.h │ │ │ │ ├── 7zFile.c │ │ │ │ ├── 7zFile.h │ │ │ │ ├── 7zStream.c │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Alloc.c │ │ │ │ ├── Alloc.h │ │ │ │ ├── Archive │ │ │ │ │ └── 7z │ │ │ │ │ │ ├── 7z.dsp │ │ │ │ │ │ ├── 7z.dsw │ │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Bcj2.c │ │ │ │ ├── Bcj2.h │ │ │ │ ├── Bra.c │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── BraIA64.c │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzFindMt.c │ │ │ │ ├── LzFindMt.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── LzmaLib.c │ │ │ │ ├── LzmaLib.h │ │ │ │ ├── LzmaLib │ │ │ │ │ ├── LzmaLib.def │ │ │ │ │ ├── LzmaLib.dsp │ │ │ │ │ ├── LzmaLib.dsw │ │ │ │ │ ├── LzmaLibExports.c │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── LzmaUtil │ │ │ │ │ ├── Lzma86Dec.c │ │ │ │ │ ├── Lzma86Dec.h │ │ │ │ │ ├── Lzma86Enc.c │ │ │ │ │ ├── Lzma86Enc.h │ │ │ │ │ ├── LzmaUtil.c │ │ │ │ │ ├── LzmaUtil.dsp │ │ │ │ │ ├── LzmaUtil.dsw │ │ │ │ │ ├── makefile │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Threads.c │ │ │ │ ├── Threads.h │ │ │ │ └── Types.h │ │ │ ├── CPP │ │ │ │ ├── 7zip │ │ │ │ │ ├── Archive │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Archive.def │ │ │ │ │ │ ├── Archive2.def │ │ │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ │ │ ├── CrossThreadProgress.cpp │ │ │ │ │ │ │ ├── CrossThreadProgress.h │ │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ │ ├── ParseProperties.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── DllExports2.cpp │ │ │ │ │ │ ├── IArchive.h │ │ │ │ │ │ ├── Icons │ │ │ │ │ │ │ └── 7z.ico │ │ │ │ │ │ ├── Lzma │ │ │ │ │ │ │ ├── LzmaArcRegister.cpp │ │ │ │ │ │ │ ├── LzmaFiltersDecode.cpp │ │ │ │ │ │ │ ├── LzmaFiltersDecode.h │ │ │ │ │ │ │ ├── LzmaHandler.cpp │ │ │ │ │ │ │ ├── LzmaHandler.h │ │ │ │ │ │ │ ├── LzmaIn.cpp │ │ │ │ │ │ │ ├── LzmaIn.h │ │ │ │ │ │ │ ├── LzmaItem.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Split │ │ │ │ │ │ │ ├── SplitHandler.cpp │ │ │ │ │ │ │ ├── SplitHandler.h │ │ │ │ │ │ │ ├── SplitHandlerOut.cpp │ │ │ │ │ │ │ ├── SplitRegister.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Bundles │ │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ │ ├── Alone.dsp │ │ │ │ │ │ │ ├── Alone.dsw │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ ├── Format7zExtractR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ └── Format7zR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ │ ├── OffsetStream.cpp │ │ │ │ │ │ ├── OffsetStream.h │ │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ │ └── VirtThread.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── Bcj2Coder.cpp │ │ │ │ │ │ ├── Bcj2Coder.h │ │ │ │ │ │ ├── Bcj2Register.cpp │ │ │ │ │ │ ├── BcjCoder.cpp │ │ │ │ │ │ ├── BcjCoder.h │ │ │ │ │ │ ├── BcjRegister.cpp │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ ├── BranchMisc.cpp │ │ │ │ │ │ ├── BranchMisc.h │ │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ │ ├── ByteSwap.h │ │ │ │ │ │ ├── ByteSwapRegister.cpp │ │ │ │ │ │ ├── CodecExports.cpp │ │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ │ ├── LzmaBenchCon.cpp │ │ │ │ │ │ │ ├── LzmaBenchCon.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ │ ├── LzmaDecoder.cpp │ │ │ │ │ │ ├── LzmaDecoder.h │ │ │ │ │ │ ├── LzmaEncoder.cpp │ │ │ │ │ │ ├── LzmaEncoder.h │ │ │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── ICoder.h │ │ │ │ │ ├── IDecl.h │ │ │ │ │ ├── IPassword.h │ │ │ │ │ ├── IProgress.h │ │ │ │ │ ├── IStream.h │ │ │ │ │ ├── MyVersion.h │ │ │ │ │ ├── MyVersionInfo.rc │ │ │ │ │ ├── PropID.h │ │ │ │ │ └── UI │ │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ │ ├── Client7z.dsp │ │ │ │ │ │ ├── Client7z.dsw │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── makefile │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ │ ├── DirItem.h │ │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ │ ├── Extract.h │ │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ │ ├── Update.cpp │ │ │ │ │ │ ├── Update.h │ │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ └── ZipRegistry.h │ │ │ │ │ │ └── Console │ │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ │ ├── List.cpp │ │ │ │ │ │ ├── List.h │ │ │ │ │ │ ├── Main.cpp │ │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ │ └── makefile │ │ │ │ ├── Build.mak │ │ │ │ ├── Common │ │ │ │ │ ├── AutoPtr.h │ │ │ │ │ ├── Buffer.h │ │ │ │ │ ├── CRC.cpp │ │ │ │ │ ├── C_FileIO.cpp │ │ │ │ │ ├── C_FileIO.h │ │ │ │ │ ├── ComTry.h │ │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ │ ├── CommandLineParser.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── DynamicBuffer.h │ │ │ │ │ ├── IntToString.cpp │ │ │ │ │ ├── IntToString.h │ │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ │ ├── ListFileUtils.h │ │ │ │ │ ├── MyCom.h │ │ │ │ │ ├── MyException.h │ │ │ │ │ ├── MyGuidDef.h │ │ │ │ │ ├── MyInitGuid.h │ │ │ │ │ ├── MyString.cpp │ │ │ │ │ ├── MyString.h │ │ │ │ │ ├── MyUnknown.h │ │ │ │ │ ├── MyVector.cpp │ │ │ │ │ ├── MyVector.h │ │ │ │ │ ├── MyWindows.h │ │ │ │ │ ├── NewHandler.cpp │ │ │ │ │ ├── NewHandler.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── StdInStream.cpp │ │ │ │ │ ├── StdInStream.h │ │ │ │ │ ├── StdOutStream.cpp │ │ │ │ │ ├── StdOutStream.h │ │ │ │ │ ├── StringConvert.cpp │ │ │ │ │ ├── StringConvert.h │ │ │ │ │ ├── StringToInt.cpp │ │ │ │ │ ├── StringToInt.h │ │ │ │ │ ├── Types.h │ │ │ │ │ ├── UTFConvert.cpp │ │ │ │ │ ├── UTFConvert.h │ │ │ │ │ ├── Wildcard.cpp │ │ │ │ │ └── Wildcard.h │ │ │ │ └── Windows │ │ │ │ │ ├── DLL.cpp │ │ │ │ │ ├── DLL.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── Error.cpp │ │ │ │ │ ├── Error.h │ │ │ │ │ ├── FileDir.cpp │ │ │ │ │ ├── FileDir.h │ │ │ │ │ ├── FileFind.cpp │ │ │ │ │ ├── FileFind.h │ │ │ │ │ ├── FileIO.cpp │ │ │ │ │ ├── FileIO.h │ │ │ │ │ ├── FileMapping.cpp │ │ │ │ │ ├── FileMapping.h │ │ │ │ │ ├── FileName.cpp │ │ │ │ │ ├── FileName.h │ │ │ │ │ ├── Handle.h │ │ │ │ │ ├── MemoryLock.cpp │ │ │ │ │ ├── MemoryLock.h │ │ │ │ │ ├── PropVariant.cpp │ │ │ │ │ ├── PropVariant.h │ │ │ │ │ ├── PropVariantConversions.cpp │ │ │ │ │ ├── PropVariantConversions.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ ├── Synchronization.h │ │ │ │ │ ├── System.cpp │ │ │ │ │ ├── System.h │ │ │ │ │ ├── Thread.h │ │ │ │ │ ├── Time.cpp │ │ │ │ │ └── Time.h │ │ │ ├── CS │ │ │ │ └── 7zip │ │ │ │ │ ├── Common │ │ │ │ │ ├── CRC.cs │ │ │ │ │ ├── CommandLineParser.cs │ │ │ │ │ ├── InBuffer.cs │ │ │ │ │ └── OutBuffer.cs │ │ │ │ │ ├── Compress │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ │ └── LzmaEncoder.cs │ │ │ │ │ ├── LzmaAlone │ │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ │ │ ├── LzmaAlone.sln │ │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ │ └── Settings.cs │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ │ └── ICoder.cs │ │ │ ├── Java │ │ │ │ └── SevenZip │ │ │ │ │ ├── CRC.java │ │ │ │ │ ├── Compression │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── BinTree.java │ │ │ │ │ │ ├── InWindow.java │ │ │ │ │ │ └── OutWindow.java │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── Base.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ ├── ICodeProgress.java │ │ │ │ │ ├── LzmaAlone.java │ │ │ │ │ └── LzmaBench.java │ │ │ ├── Makefile │ │ │ ├── Methods.txt │ │ │ ├── history.txt │ │ │ ├── lzma.exe │ │ │ ├── lzma.txt │ │ │ ├── lzma465.tar.bz2 │ │ │ └── patches │ │ │ │ └── lzma465-squashfs.patch │ │ └── squashfs-tools │ │ │ ├── Makefile │ │ │ ├── global.h │ │ │ ├── lzmainterface.c │ │ │ ├── lzmainterface.h │ │ │ ├── mksquashfs.c │ │ │ ├── mksquashfs.h │ │ │ ├── read_fs.c │ │ │ ├── read_fs.h │ │ │ ├── sort.c │ │ │ ├── sort.h │ │ │ ├── squashfs_fs.h │ │ │ └── unsquashfs.c │ ├── squashfs-3.4-nb4 │ │ ├── Makefile │ │ ├── README.txt │ │ ├── lzma465 │ │ │ ├── 7zC.txt │ │ │ ├── 7zFormat.txt │ │ │ ├── C │ │ │ │ ├── 7zBuf.c │ │ │ │ ├── 7zBuf.h │ │ │ │ ├── 7zBuf2.c │ │ │ │ ├── 7zCrc.c │ │ │ │ ├── 7zCrc.h │ │ │ │ ├── 7zFile.c │ │ │ │ ├── 7zFile.h │ │ │ │ ├── 7zStream.c │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Alloc.c │ │ │ │ ├── Alloc.h │ │ │ │ ├── Archive │ │ │ │ │ └── 7z │ │ │ │ │ │ ├── 7z.dsp │ │ │ │ │ │ ├── 7z.dsw │ │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Bcj2.c │ │ │ │ ├── Bcj2.h │ │ │ │ ├── Bra.c │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── BraIA64.c │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzFindMt.c │ │ │ │ ├── LzFindMt.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── LzmaLib.c │ │ │ │ ├── LzmaLib.h │ │ │ │ ├── LzmaLib │ │ │ │ │ ├── LzmaLib.def │ │ │ │ │ ├── LzmaLib.dsp │ │ │ │ │ ├── LzmaLib.dsw │ │ │ │ │ ├── LzmaLibExports.c │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── LzmaUtil │ │ │ │ │ ├── Lzma86Dec.c │ │ │ │ │ ├── Lzma86Dec.h │ │ │ │ │ ├── Lzma86Enc.c │ │ │ │ │ ├── Lzma86Enc.h │ │ │ │ │ ├── LzmaUtil.c │ │ │ │ │ ├── LzmaUtil.dsp │ │ │ │ │ ├── LzmaUtil.dsw │ │ │ │ │ ├── makefile │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Threads.c │ │ │ │ ├── Threads.h │ │ │ │ ├── Types.h │ │ │ │ ├── sqlzma.mk │ │ │ │ └── uncomp.c │ │ │ ├── CPP │ │ │ │ ├── 7zip │ │ │ │ │ ├── Archive │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Archive.def │ │ │ │ │ │ ├── Archive2.def │ │ │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ │ │ ├── CrossThreadProgress.cpp │ │ │ │ │ │ │ ├── CrossThreadProgress.h │ │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ │ ├── ParseProperties.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── DllExports2.cpp │ │ │ │ │ │ ├── IArchive.h │ │ │ │ │ │ ├── Icons │ │ │ │ │ │ │ └── 7z.ico │ │ │ │ │ │ ├── Lzma │ │ │ │ │ │ │ ├── LzmaArcRegister.cpp │ │ │ │ │ │ │ ├── LzmaFiltersDecode.cpp │ │ │ │ │ │ │ ├── LzmaFiltersDecode.h │ │ │ │ │ │ │ ├── LzmaHandler.cpp │ │ │ │ │ │ │ ├── LzmaHandler.h │ │ │ │ │ │ │ ├── LzmaIn.cpp │ │ │ │ │ │ │ ├── LzmaIn.h │ │ │ │ │ │ │ ├── LzmaItem.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Split │ │ │ │ │ │ │ ├── SplitHandler.cpp │ │ │ │ │ │ │ ├── SplitHandler.h │ │ │ │ │ │ │ ├── SplitHandlerOut.cpp │ │ │ │ │ │ │ ├── SplitRegister.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Bundles │ │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ │ ├── Alone.dsp │ │ │ │ │ │ │ ├── Alone.dsw │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ ├── Format7zExtractR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ └── Format7zR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ │ ├── OffsetStream.cpp │ │ │ │ │ │ ├── OffsetStream.h │ │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ │ └── VirtThread.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── Bcj2Coder.cpp │ │ │ │ │ │ ├── Bcj2Coder.h │ │ │ │ │ │ ├── Bcj2Register.cpp │ │ │ │ │ │ ├── BcjCoder.cpp │ │ │ │ │ │ ├── BcjCoder.h │ │ │ │ │ │ ├── BcjRegister.cpp │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ ├── BranchMisc.cpp │ │ │ │ │ │ ├── BranchMisc.h │ │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ │ ├── ByteSwap.h │ │ │ │ │ │ ├── ByteSwapRegister.cpp │ │ │ │ │ │ ├── CodecExports.cpp │ │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ │ ├── LzmaBenchCon.cpp │ │ │ │ │ │ │ ├── LzmaBenchCon.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── comp.cc │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── makefile.gcc │ │ │ │ │ │ │ └── sqlzma.mk │ │ │ │ │ │ ├── LzmaDecoder.cpp │ │ │ │ │ │ ├── LzmaDecoder.h │ │ │ │ │ │ ├── LzmaEncoder.cpp │ │ │ │ │ │ ├── LzmaEncoder.h │ │ │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── ICoder.h │ │ │ │ │ ├── IDecl.h │ │ │ │ │ ├── IPassword.h │ │ │ │ │ ├── IProgress.h │ │ │ │ │ ├── IStream.h │ │ │ │ │ ├── MyVersion.h │ │ │ │ │ ├── MyVersionInfo.rc │ │ │ │ │ ├── PropID.h │ │ │ │ │ └── UI │ │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ │ ├── Client7z.dsp │ │ │ │ │ │ ├── Client7z.dsw │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── makefile │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ │ ├── DirItem.h │ │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ │ ├── Extract.h │ │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ │ ├── Update.cpp │ │ │ │ │ │ ├── Update.h │ │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ └── ZipRegistry.h │ │ │ │ │ │ └── Console │ │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ │ ├── List.cpp │ │ │ │ │ │ ├── List.h │ │ │ │ │ │ ├── Main.cpp │ │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ │ └── makefile │ │ │ │ ├── Build.mak │ │ │ │ ├── Common │ │ │ │ │ ├── AutoPtr.h │ │ │ │ │ ├── Buffer.h │ │ │ │ │ ├── CRC.cpp │ │ │ │ │ ├── C_FileIO.cpp │ │ │ │ │ ├── C_FileIO.h │ │ │ │ │ ├── ComTry.h │ │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ │ ├── CommandLineParser.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── DynamicBuffer.h │ │ │ │ │ ├── IntToString.cpp │ │ │ │ │ ├── IntToString.h │ │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ │ ├── ListFileUtils.h │ │ │ │ │ ├── MyCom.h │ │ │ │ │ ├── MyException.h │ │ │ │ │ ├── MyGuidDef.h │ │ │ │ │ ├── MyInitGuid.h │ │ │ │ │ ├── MyString.cpp │ │ │ │ │ ├── MyString.h │ │ │ │ │ ├── MyUnknown.h │ │ │ │ │ ├── MyVector.cpp │ │ │ │ │ ├── MyVector.h │ │ │ │ │ ├── MyWindows.h │ │ │ │ │ ├── NewHandler.cpp │ │ │ │ │ ├── NewHandler.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── StdInStream.cpp │ │ │ │ │ ├── StdInStream.h │ │ │ │ │ ├── StdOutStream.cpp │ │ │ │ │ ├── StdOutStream.h │ │ │ │ │ ├── StringConvert.cpp │ │ │ │ │ ├── StringConvert.h │ │ │ │ │ ├── StringToInt.cpp │ │ │ │ │ ├── StringToInt.h │ │ │ │ │ ├── Types.h │ │ │ │ │ ├── UTFConvert.cpp │ │ │ │ │ ├── UTFConvert.h │ │ │ │ │ ├── Wildcard.cpp │ │ │ │ │ └── Wildcard.h │ │ │ │ └── Windows │ │ │ │ │ ├── DLL.cpp │ │ │ │ │ ├── DLL.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── Error.cpp │ │ │ │ │ ├── Error.h │ │ │ │ │ ├── FileDir.cpp │ │ │ │ │ ├── FileDir.h │ │ │ │ │ ├── FileFind.cpp │ │ │ │ │ ├── FileFind.h │ │ │ │ │ ├── FileIO.cpp │ │ │ │ │ ├── FileIO.h │ │ │ │ │ ├── FileMapping.cpp │ │ │ │ │ ├── FileMapping.h │ │ │ │ │ ├── FileName.cpp │ │ │ │ │ ├── FileName.h │ │ │ │ │ ├── Handle.h │ │ │ │ │ ├── MemoryLock.cpp │ │ │ │ │ ├── MemoryLock.h │ │ │ │ │ ├── PropVariant.cpp │ │ │ │ │ ├── PropVariant.h │ │ │ │ │ ├── PropVariantConversions.cpp │ │ │ │ │ ├── PropVariantConversions.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ ├── Synchronization.h │ │ │ │ │ ├── System.cpp │ │ │ │ │ ├── System.h │ │ │ │ │ ├── Thread.h │ │ │ │ │ ├── Time.cpp │ │ │ │ │ └── Time.h │ │ │ ├── CS │ │ │ │ └── 7zip │ │ │ │ │ ├── Common │ │ │ │ │ ├── CRC.cs │ │ │ │ │ ├── CommandLineParser.cs │ │ │ │ │ ├── InBuffer.cs │ │ │ │ │ └── OutBuffer.cs │ │ │ │ │ ├── Compress │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ │ └── LzmaEncoder.cs │ │ │ │ │ ├── LzmaAlone │ │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ │ │ ├── LzmaAlone.sln │ │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ │ └── Settings.cs │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ │ └── ICoder.cs │ │ │ ├── Java │ │ │ │ └── SevenZip │ │ │ │ │ ├── CRC.java │ │ │ │ │ ├── Compression │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── BinTree.java │ │ │ │ │ │ ├── InWindow.java │ │ │ │ │ │ └── OutWindow.java │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── Base.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ ├── ICodeProgress.java │ │ │ │ │ ├── LzmaAlone.java │ │ │ │ │ └── LzmaBench.java │ │ │ ├── Methods.txt │ │ │ ├── history.txt │ │ │ ├── lzma.exe │ │ │ └── lzma.txt │ │ ├── mksquashfs │ │ ├── sqlzma.h │ │ ├── sqmagic.h │ │ ├── squashfs3.4 │ │ │ ├── ACKNOWLEDGEMENTS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── INSTALL │ │ │ ├── OLD-READMEs │ │ │ │ ├── README-2.0 │ │ │ │ ├── README-2.1 │ │ │ │ ├── README-3.0 │ │ │ │ ├── README-3.1 │ │ │ │ ├── README-3.2 │ │ │ │ ├── README-3.3 │ │ │ │ └── README-AMD64 │ │ │ ├── PERFORMANCE.README │ │ │ ├── README │ │ │ ├── kernel-patches │ │ │ │ ├── README │ │ │ │ ├── linux-2.6.12 │ │ │ │ │ └── squashfs3.4-patch │ │ │ │ ├── linux-2.6.14 │ │ │ │ │ └── squashfs3.4-patch │ │ │ │ ├── linux-2.6.16 │ │ │ │ │ └── squashfs3.4-patch │ │ │ │ ├── linux-2.6.18 │ │ │ │ │ └── squashfs3.4-patch │ │ │ │ ├── linux-2.6.20 │ │ │ │ │ └── squashfs3.4-patch │ │ │ │ ├── linux-2.6.22 │ │ │ │ │ └── squashfs3.4-patch │ │ │ │ ├── linux-2.6.23 │ │ │ │ │ └── squashfs3.4-patch │ │ │ │ ├── linux-2.6.24 │ │ │ │ │ └── squashfs3.4-patch │ │ │ │ ├── linux-2.6.25 │ │ │ │ │ └── squashfs3.4-patch │ │ │ │ ├── linux-2.6.26 │ │ │ │ │ └── squashfs3.4-patch │ │ │ │ ├── linux-2.6.27-rc4-next │ │ │ │ │ └── squashfs3.4-patch │ │ │ │ └── linux-2.6.27-rc4 │ │ │ │ │ └── squashfs3.4-patch │ │ │ └── squashfs-tools │ │ │ │ ├── Makefile │ │ │ │ ├── global.h │ │ │ │ ├── mksquashfs.c │ │ │ │ ├── mksquashfs.h │ │ │ │ ├── read_fs.c │ │ │ │ ├── read_fs.h │ │ │ │ ├── sort.c │ │ │ │ ├── sort.h │ │ │ │ ├── squashfs_fs.h │ │ │ │ └── unsquashfs.c │ │ └── unsquashfs-lzma │ ├── squashfs-4.0-lzma │ │ ├── Makefile │ │ ├── README-4.0 │ │ ├── global.h │ │ ├── lzma │ │ │ ├── 7zC.txt │ │ │ ├── 7zFormat.txt │ │ │ ├── C │ │ │ │ ├── 7zBuf.c │ │ │ │ ├── 7zBuf.h │ │ │ │ ├── 7zBuf2.c │ │ │ │ ├── 7zCrc.c │ │ │ │ ├── 7zCrc.h │ │ │ │ ├── 7zFile.c │ │ │ │ ├── 7zFile.h │ │ │ │ ├── 7zStream.c │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Alloc.c │ │ │ │ ├── Alloc.h │ │ │ │ ├── Archive │ │ │ │ │ └── 7z │ │ │ │ │ │ ├── 7z.dsp │ │ │ │ │ │ ├── 7z.dsw │ │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Bcj2.c │ │ │ │ ├── Bcj2.h │ │ │ │ ├── Bra.c │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── BraIA64.c │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzFindMt.c │ │ │ │ ├── LzFindMt.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── LzmaLib.c │ │ │ │ ├── LzmaLib.h │ │ │ │ ├── LzmaLib │ │ │ │ │ ├── LzmaLib.def │ │ │ │ │ ├── LzmaLib.dsp │ │ │ │ │ ├── LzmaLib.dsw │ │ │ │ │ ├── LzmaLibExports.c │ │ │ │ │ ├── Makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── LzmaUtil │ │ │ │ │ ├── Lzma86Dec.c │ │ │ │ │ ├── Lzma86Dec.h │ │ │ │ │ ├── Lzma86Enc.c │ │ │ │ │ ├── Lzma86Enc.h │ │ │ │ │ ├── LzmaUtil.c │ │ │ │ │ ├── LzmaUtil.dsp │ │ │ │ │ ├── LzmaUtil.dsw │ │ │ │ │ ├── makefile │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Threads.c │ │ │ │ ├── Threads.h │ │ │ │ └── Types.h │ │ │ ├── CPP │ │ │ │ ├── 7zip │ │ │ │ │ ├── Archive │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Archive.def │ │ │ │ │ │ ├── Archive2.def │ │ │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ │ │ ├── CrossThreadProgress.cpp │ │ │ │ │ │ │ ├── CrossThreadProgress.h │ │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ │ ├── ParseProperties.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── DllExports2.cpp │ │ │ │ │ │ ├── IArchive.h │ │ │ │ │ │ ├── Lzma │ │ │ │ │ │ │ ├── LzmaArcRegister.cpp │ │ │ │ │ │ │ ├── LzmaFiltersDecode.cpp │ │ │ │ │ │ │ ├── LzmaFiltersDecode.h │ │ │ │ │ │ │ ├── LzmaHandler.cpp │ │ │ │ │ │ │ ├── LzmaHandler.h │ │ │ │ │ │ │ ├── LzmaIn.cpp │ │ │ │ │ │ │ ├── LzmaIn.h │ │ │ │ │ │ │ ├── LzmaItem.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Split │ │ │ │ │ │ │ ├── SplitHandler.cpp │ │ │ │ │ │ │ ├── SplitHandler.h │ │ │ │ │ │ │ ├── SplitHandlerOut.cpp │ │ │ │ │ │ │ ├── SplitRegister.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Bundles │ │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ │ ├── Alone.dsp │ │ │ │ │ │ │ ├── Alone.dsw │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ ├── Format7zExtractR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ └── Format7zR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ │ ├── OffsetStream.cpp │ │ │ │ │ │ ├── OffsetStream.h │ │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ │ └── VirtThread.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── Bcj2Coder.cpp │ │ │ │ │ │ ├── Bcj2Coder.h │ │ │ │ │ │ ├── Bcj2Register.cpp │ │ │ │ │ │ ├── BcjCoder.cpp │ │ │ │ │ │ ├── BcjCoder.h │ │ │ │ │ │ ├── BcjRegister.cpp │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ ├── BranchMisc.cpp │ │ │ │ │ │ ├── BranchMisc.h │ │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ │ ├── ByteSwap.h │ │ │ │ │ │ ├── ByteSwapRegister.cpp │ │ │ │ │ │ ├── CodecExports.cpp │ │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ │ ├── LzmaBenchCon.cpp │ │ │ │ │ │ │ ├── LzmaBenchCon.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ │ ├── LzmaDecoder.cpp │ │ │ │ │ │ ├── LzmaDecoder.h │ │ │ │ │ │ ├── LzmaEncoder.cpp │ │ │ │ │ │ ├── LzmaEncoder.h │ │ │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── ICoder.h │ │ │ │ │ ├── IDecl.h │ │ │ │ │ ├── IPassword.h │ │ │ │ │ ├── IProgress.h │ │ │ │ │ ├── IStream.h │ │ │ │ │ ├── MyVersion.h │ │ │ │ │ ├── MyVersionInfo.rc │ │ │ │ │ ├── PropID.h │ │ │ │ │ └── UI │ │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ │ ├── Client7z.dsp │ │ │ │ │ │ ├── Client7z.dsw │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── makefile │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ │ ├── DirItem.h │ │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ │ ├── Extract.h │ │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ │ ├── Update.cpp │ │ │ │ │ │ ├── Update.h │ │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ └── ZipRegistry.h │ │ │ │ │ │ └── Console │ │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ │ ├── List.cpp │ │ │ │ │ │ ├── List.h │ │ │ │ │ │ ├── Main.cpp │ │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ │ └── makefile │ │ │ │ ├── Build.mak │ │ │ │ ├── Common │ │ │ │ │ ├── AutoPtr.h │ │ │ │ │ ├── Buffer.h │ │ │ │ │ ├── CRC.cpp │ │ │ │ │ ├── C_FileIO.cpp │ │ │ │ │ ├── C_FileIO.h │ │ │ │ │ ├── ComTry.h │ │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ │ ├── CommandLineParser.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── DynamicBuffer.h │ │ │ │ │ ├── IntToString.cpp │ │ │ │ │ ├── IntToString.h │ │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ │ ├── ListFileUtils.h │ │ │ │ │ ├── MyCom.h │ │ │ │ │ ├── MyException.h │ │ │ │ │ ├── MyGuidDef.h │ │ │ │ │ ├── MyInitGuid.h │ │ │ │ │ ├── MyString.cpp │ │ │ │ │ ├── MyString.h │ │ │ │ │ ├── MyUnknown.h │ │ │ │ │ ├── MyVector.cpp │ │ │ │ │ ├── MyVector.h │ │ │ │ │ ├── MyWindows.h │ │ │ │ │ ├── NewHandler.cpp │ │ │ │ │ ├── NewHandler.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── StdInStream.cpp │ │ │ │ │ ├── StdInStream.h │ │ │ │ │ ├── StdOutStream.cpp │ │ │ │ │ ├── StdOutStream.h │ │ │ │ │ ├── StringConvert.cpp │ │ │ │ │ ├── StringConvert.h │ │ │ │ │ ├── StringToInt.cpp │ │ │ │ │ ├── StringToInt.h │ │ │ │ │ ├── Types.h │ │ │ │ │ ├── UTFConvert.cpp │ │ │ │ │ ├── UTFConvert.h │ │ │ │ │ ├── Wildcard.cpp │ │ │ │ │ └── Wildcard.h │ │ │ │ └── Windows │ │ │ │ │ ├── DLL.cpp │ │ │ │ │ ├── DLL.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── Error.cpp │ │ │ │ │ ├── Error.h │ │ │ │ │ ├── FileDir.cpp │ │ │ │ │ ├── FileDir.h │ │ │ │ │ ├── FileFind.cpp │ │ │ │ │ ├── FileFind.h │ │ │ │ │ ├── FileIO.cpp │ │ │ │ │ ├── FileIO.h │ │ │ │ │ ├── FileMapping.cpp │ │ │ │ │ ├── FileMapping.h │ │ │ │ │ ├── FileName.cpp │ │ │ │ │ ├── FileName.h │ │ │ │ │ ├── Handle.h │ │ │ │ │ ├── MemoryLock.cpp │ │ │ │ │ ├── MemoryLock.h │ │ │ │ │ ├── PropVariant.cpp │ │ │ │ │ ├── PropVariant.h │ │ │ │ │ ├── PropVariantConversions.cpp │ │ │ │ │ ├── PropVariantConversions.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ ├── Synchronization.h │ │ │ │ │ ├── System.cpp │ │ │ │ │ ├── System.h │ │ │ │ │ ├── Thread.h │ │ │ │ │ ├── Time.cpp │ │ │ │ │ └── Time.h │ │ │ ├── CS │ │ │ │ └── 7zip │ │ │ │ │ ├── Common │ │ │ │ │ ├── CRC.cs │ │ │ │ │ ├── CommandLineParser.cs │ │ │ │ │ ├── InBuffer.cs │ │ │ │ │ └── OutBuffer.cs │ │ │ │ │ ├── Compress │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ │ └── LzmaEncoder.cs │ │ │ │ │ ├── LzmaAlone │ │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ │ │ ├── LzmaAlone.sln │ │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ │ └── Settings.cs │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ │ └── ICoder.cs │ │ │ ├── Java │ │ │ │ └── SevenZip │ │ │ │ │ ├── CRC.java │ │ │ │ │ ├── Compression │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── BinTree.java │ │ │ │ │ │ ├── InWindow.java │ │ │ │ │ │ └── OutWindow.java │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── Base.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ ├── ICodeProgress.java │ │ │ │ │ ├── LzmaAlone.java │ │ │ │ │ └── LzmaBench.java │ │ │ ├── Methods.txt │ │ │ ├── history.txt │ │ │ └── lzma.txt │ │ ├── mksquashfs.c │ │ ├── mksquashfs.c.orig │ │ ├── mksquashfs.h │ │ ├── pseudo.c │ │ ├── pseudo.h │ │ ├── read_fs.c │ │ ├── read_fs.h │ │ ├── sort.c │ │ ├── sort.h │ │ ├── squashfs_compat.h │ │ ├── squashfs_fs.h │ │ ├── squashfs_swap.h │ │ ├── swap.c │ │ ├── uncompress.c │ │ ├── uncompress.h │ │ ├── unsquash-1.c │ │ ├── unsquash-2.c │ │ ├── unsquash-3.c │ │ ├── unsquash-4.c │ │ ├── unsquashfs.c │ │ └── unsquashfs.h │ ├── squashfs-4.0-realtek │ │ ├── Makefile │ │ ├── compressor.c │ │ ├── compressor.h │ │ ├── global.h │ │ ├── gzip_wrapper.c │ │ ├── lzma │ │ │ ├── 7zC.txt │ │ │ ├── 7zFormat.txt │ │ │ ├── C │ │ │ │ ├── 7zBuf.c │ │ │ │ ├── 7zBuf.h │ │ │ │ ├── 7zBuf2.c │ │ │ │ ├── 7zCrc.c │ │ │ │ ├── 7zCrc.h │ │ │ │ ├── 7zFile.c │ │ │ │ ├── 7zFile.h │ │ │ │ ├── 7zStream.c │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Alloc.c │ │ │ │ ├── Alloc.h │ │ │ │ ├── Archive │ │ │ │ │ └── 7z │ │ │ │ │ │ ├── 7z.dsp │ │ │ │ │ │ ├── 7z.dsw │ │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Bcj2.c │ │ │ │ ├── Bcj2.h │ │ │ │ ├── Bra.c │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── BraIA64.c │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzFindMt.c │ │ │ │ ├── LzFindMt.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── LzmaLib.c │ │ │ │ ├── LzmaLib.h │ │ │ │ ├── LzmaLib │ │ │ │ │ ├── LzmaLib.def │ │ │ │ │ ├── LzmaLib.dsp │ │ │ │ │ ├── LzmaLib.dsw │ │ │ │ │ ├── LzmaLibExports.c │ │ │ │ │ ├── Makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── LzmaUtil │ │ │ │ │ ├── Lzma86Dec.c │ │ │ │ │ ├── Lzma86Dec.h │ │ │ │ │ ├── Lzma86Enc.c │ │ │ │ │ ├── Lzma86Enc.h │ │ │ │ │ ├── LzmaUtil.c │ │ │ │ │ ├── LzmaUtil.dsp │ │ │ │ │ ├── LzmaUtil.dsw │ │ │ │ │ ├── makefile │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Threads.c │ │ │ │ ├── Threads.h │ │ │ │ └── Types.h │ │ │ ├── CPP │ │ │ │ ├── 7zip │ │ │ │ │ ├── Archive │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Archive.def │ │ │ │ │ │ ├── Archive2.def │ │ │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ │ │ ├── CrossThreadProgress.cpp │ │ │ │ │ │ │ ├── CrossThreadProgress.h │ │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ │ ├── ParseProperties.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── DllExports2.cpp │ │ │ │ │ │ ├── IArchive.h │ │ │ │ │ │ ├── Lzma │ │ │ │ │ │ │ ├── LzmaArcRegister.cpp │ │ │ │ │ │ │ ├── LzmaFiltersDecode.cpp │ │ │ │ │ │ │ ├── LzmaFiltersDecode.h │ │ │ │ │ │ │ ├── LzmaHandler.cpp │ │ │ │ │ │ │ ├── LzmaHandler.h │ │ │ │ │ │ │ ├── LzmaIn.cpp │ │ │ │ │ │ │ ├── LzmaIn.h │ │ │ │ │ │ │ ├── LzmaItem.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Split │ │ │ │ │ │ │ ├── SplitHandler.cpp │ │ │ │ │ │ │ ├── SplitHandler.h │ │ │ │ │ │ │ ├── SplitHandlerOut.cpp │ │ │ │ │ │ │ ├── SplitRegister.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Bundles │ │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ │ ├── Alone.dsp │ │ │ │ │ │ │ ├── Alone.dsw │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ ├── Format7zExtractR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ └── Format7zR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ │ ├── OffsetStream.cpp │ │ │ │ │ │ ├── OffsetStream.h │ │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ │ └── VirtThread.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── Bcj2Coder.cpp │ │ │ │ │ │ ├── Bcj2Coder.h │ │ │ │ │ │ ├── Bcj2Register.cpp │ │ │ │ │ │ ├── BcjCoder.cpp │ │ │ │ │ │ ├── BcjCoder.h │ │ │ │ │ │ ├── BcjRegister.cpp │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ ├── BranchMisc.cpp │ │ │ │ │ │ ├── BranchMisc.h │ │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ │ ├── ByteSwap.h │ │ │ │ │ │ ├── ByteSwapRegister.cpp │ │ │ │ │ │ ├── CodecExports.cpp │ │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ │ ├── LzmaBenchCon.cpp │ │ │ │ │ │ │ ├── LzmaBenchCon.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ │ ├── LzmaDecoder.cpp │ │ │ │ │ │ ├── LzmaDecoder.h │ │ │ │ │ │ ├── LzmaEncoder.cpp │ │ │ │ │ │ ├── LzmaEncoder.h │ │ │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── ICoder.h │ │ │ │ │ ├── IDecl.h │ │ │ │ │ ├── IPassword.h │ │ │ │ │ ├── IProgress.h │ │ │ │ │ ├── IStream.h │ │ │ │ │ ├── MyVersion.h │ │ │ │ │ ├── MyVersionInfo.rc │ │ │ │ │ ├── PropID.h │ │ │ │ │ └── UI │ │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ │ ├── Client7z.dsp │ │ │ │ │ │ ├── Client7z.dsw │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── makefile │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ │ ├── DirItem.h │ │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ │ ├── Extract.h │ │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ │ ├── Update.cpp │ │ │ │ │ │ ├── Update.h │ │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ └── ZipRegistry.h │ │ │ │ │ │ └── Console │ │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ │ ├── List.cpp │ │ │ │ │ │ ├── List.h │ │ │ │ │ │ ├── Main.cpp │ │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ │ └── makefile │ │ │ │ ├── Build.mak │ │ │ │ ├── Common │ │ │ │ │ ├── AutoPtr.h │ │ │ │ │ ├── Buffer.h │ │ │ │ │ ├── CRC.cpp │ │ │ │ │ ├── C_FileIO.cpp │ │ │ │ │ ├── C_FileIO.h │ │ │ │ │ ├── ComTry.h │ │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ │ ├── CommandLineParser.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── DynamicBuffer.h │ │ │ │ │ ├── IntToString.cpp │ │ │ │ │ ├── IntToString.h │ │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ │ ├── ListFileUtils.h │ │ │ │ │ ├── MyCom.h │ │ │ │ │ ├── MyException.h │ │ │ │ │ ├── MyGuidDef.h │ │ │ │ │ ├── MyInitGuid.h │ │ │ │ │ ├── MyString.cpp │ │ │ │ │ ├── MyString.h │ │ │ │ │ ├── MyUnknown.h │ │ │ │ │ ├── MyVector.cpp │ │ │ │ │ ├── MyVector.h │ │ │ │ │ ├── MyWindows.h │ │ │ │ │ ├── NewHandler.cpp │ │ │ │ │ ├── NewHandler.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── StdInStream.cpp │ │ │ │ │ ├── StdInStream.h │ │ │ │ │ ├── StdOutStream.cpp │ │ │ │ │ ├── StdOutStream.h │ │ │ │ │ ├── StringConvert.cpp │ │ │ │ │ ├── StringConvert.h │ │ │ │ │ ├── StringToInt.cpp │ │ │ │ │ ├── StringToInt.h │ │ │ │ │ ├── Types.h │ │ │ │ │ ├── UTFConvert.cpp │ │ │ │ │ ├── UTFConvert.h │ │ │ │ │ ├── Wildcard.cpp │ │ │ │ │ └── Wildcard.h │ │ │ │ └── Windows │ │ │ │ │ ├── DLL.cpp │ │ │ │ │ ├── DLL.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── Error.cpp │ │ │ │ │ ├── Error.h │ │ │ │ │ ├── FileDir.cpp │ │ │ │ │ ├── FileDir.h │ │ │ │ │ ├── FileFind.cpp │ │ │ │ │ ├── FileFind.h │ │ │ │ │ ├── FileIO.cpp │ │ │ │ │ ├── FileIO.h │ │ │ │ │ ├── FileMapping.cpp │ │ │ │ │ ├── FileMapping.h │ │ │ │ │ ├── FileName.cpp │ │ │ │ │ ├── FileName.h │ │ │ │ │ ├── Handle.h │ │ │ │ │ ├── MemoryLock.cpp │ │ │ │ │ ├── MemoryLock.h │ │ │ │ │ ├── PropVariant.cpp │ │ │ │ │ ├── PropVariant.h │ │ │ │ │ ├── PropVariantConversions.cpp │ │ │ │ │ ├── PropVariantConversions.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ ├── Synchronization.h │ │ │ │ │ ├── System.cpp │ │ │ │ │ ├── System.h │ │ │ │ │ ├── Thread.h │ │ │ │ │ ├── Time.cpp │ │ │ │ │ └── Time.h │ │ │ ├── CS │ │ │ │ └── 7zip │ │ │ │ │ ├── Common │ │ │ │ │ ├── CRC.cs │ │ │ │ │ ├── CommandLineParser.cs │ │ │ │ │ ├── InBuffer.cs │ │ │ │ │ └── OutBuffer.cs │ │ │ │ │ ├── Compress │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ │ └── LzmaEncoder.cs │ │ │ │ │ ├── LzmaAlone │ │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ │ │ ├── LzmaAlone.sln │ │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ │ └── Settings.cs │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ │ └── ICoder.cs │ │ │ ├── Java │ │ │ │ └── SevenZip │ │ │ │ │ ├── CRC.java │ │ │ │ │ ├── Compression │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── BinTree.java │ │ │ │ │ │ ├── InWindow.java │ │ │ │ │ │ └── OutWindow.java │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── Base.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ ├── ICodeProgress.java │ │ │ │ │ ├── LzmaAlone.java │ │ │ │ │ └── LzmaBench.java │ │ │ ├── Methods.txt │ │ │ ├── history.txt │ │ │ └── lzma.txt │ │ ├── lzma_wrapper.c │ │ ├── mksquashfs.c │ │ ├── mksquashfs.h │ │ ├── pseudo.c │ │ ├── pseudo.h │ │ ├── read_fs.c │ │ ├── read_fs.h │ │ ├── sort.c │ │ ├── sort.h │ │ ├── squashfs_compat.h │ │ ├── squashfs_fs.h │ │ ├── squashfs_swap.h │ │ ├── swap.c │ │ ├── unsquash-1.c │ │ ├── unsquash-2.c │ │ ├── unsquash-3.c │ │ ├── unsquash-4.c │ │ ├── unsquashfs.c │ │ └── unsquashfs.h │ ├── squashfs-4.2-official │ │ ├── Makefile │ │ ├── compressor.c │ │ ├── compressor.h │ │ ├── gzip_wrapper.c │ │ ├── lzma_wrapper.c │ │ ├── lzma_xz_wrapper.c │ │ ├── lzo_wrapper.c │ │ ├── mksquashfs.c │ │ ├── mksquashfs.h │ │ ├── pseudo.c │ │ ├── pseudo.h │ │ ├── read_fs.c │ │ ├── read_fs.h │ │ ├── read_xattrs.c │ │ ├── sort.c │ │ ├── sort.h │ │ ├── squashfs_compat.h │ │ ├── squashfs_fs.h │ │ ├── squashfs_swap.h │ │ ├── swap.c │ │ ├── unsquash-1.c │ │ ├── unsquash-2.c │ │ ├── unsquash-3.c │ │ ├── unsquash-4.c │ │ ├── unsquashfs.c │ │ ├── unsquashfs.h │ │ ├── unsquashfs_xattr.c │ │ ├── xattr.c │ │ ├── xattr.h │ │ ├── xz_wrapper.c │ │ └── xz_wrapper.h │ ├── squashfs-4.2 │ │ ├── ACKNOWLEDGEMENTS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── DONATIONS │ │ ├── INSTALL │ │ ├── Makefile │ │ ├── OLD-READMEs │ │ │ ├── README-2.0 │ │ │ ├── README-2.1 │ │ │ ├── README-3.0 │ │ │ ├── README-3.1 │ │ │ ├── README-3.2 │ │ │ ├── README-3.3 │ │ │ ├── README-4.0 │ │ │ ├── README-4.1 │ │ │ └── README-AMD64 │ │ ├── PERFORMANCE.README │ │ ├── README │ │ ├── README-4.2 │ │ ├── lzma-4.65 │ │ │ ├── .built │ │ │ ├── .built_check │ │ │ ├── .configured │ │ │ ├── .prepared1a23cc84ca172080ca2c2f332cb31052 │ │ │ ├── .prepared1a23cc84ca172080ca2c2f332cb31052_check │ │ │ ├── 7zC.txt │ │ │ ├── 7zFormat.txt │ │ │ ├── C │ │ │ │ ├── 7zBuf.c │ │ │ │ ├── 7zBuf.h │ │ │ │ ├── 7zBuf2.c │ │ │ │ ├── 7zCrc.c │ │ │ │ ├── 7zCrc.h │ │ │ │ ├── 7zFile.c │ │ │ │ ├── 7zFile.h │ │ │ │ ├── 7zStream.c │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Alloc.c │ │ │ │ ├── Alloc.h │ │ │ │ ├── Archive │ │ │ │ │ └── 7z │ │ │ │ │ │ ├── 7z.dsp │ │ │ │ │ │ ├── 7z.dsw │ │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Bcj2.c │ │ │ │ ├── Bcj2.h │ │ │ │ ├── Bra.c │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── BraIA64.c │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzFindMt.c │ │ │ │ ├── LzFindMt.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── LzmaLib.c │ │ │ │ ├── LzmaLib.h │ │ │ │ ├── LzmaLib │ │ │ │ │ ├── LzmaLib.def │ │ │ │ │ ├── LzmaLib.dsp │ │ │ │ │ ├── LzmaLib.dsw │ │ │ │ │ ├── LzmaLibExports.c │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── LzmaUtil │ │ │ │ │ ├── Lzma86Dec.c │ │ │ │ │ ├── Lzma86Dec.h │ │ │ │ │ ├── Lzma86Enc.c │ │ │ │ │ ├── Lzma86Enc.h │ │ │ │ │ ├── LzmaUtil.c │ │ │ │ │ ├── LzmaUtil.dsp │ │ │ │ │ ├── LzmaUtil.dsw │ │ │ │ │ ├── lzma │ │ │ │ │ ├── makefile │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Threads.c │ │ │ │ ├── Threads.h │ │ │ │ └── Types.h │ │ │ ├── CPP │ │ │ │ ├── 7zip │ │ │ │ │ ├── Archive │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Archive.def │ │ │ │ │ │ ├── Archive2.def │ │ │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ │ │ ├── CrossThreadProgress.cpp │ │ │ │ │ │ │ ├── CrossThreadProgress.h │ │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ │ ├── ParseProperties.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── DllExports2.cpp │ │ │ │ │ │ ├── IArchive.h │ │ │ │ │ │ ├── Icons │ │ │ │ │ │ │ └── 7z.ico │ │ │ │ │ │ ├── Lzma │ │ │ │ │ │ │ ├── LzmaArcRegister.cpp │ │ │ │ │ │ │ ├── LzmaFiltersDecode.cpp │ │ │ │ │ │ │ ├── LzmaFiltersDecode.h │ │ │ │ │ │ │ ├── LzmaHandler.cpp │ │ │ │ │ │ │ ├── LzmaHandler.h │ │ │ │ │ │ │ ├── LzmaIn.cpp │ │ │ │ │ │ │ ├── LzmaIn.h │ │ │ │ │ │ │ ├── LzmaItem.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Split │ │ │ │ │ │ │ ├── SplitHandler.cpp │ │ │ │ │ │ │ ├── SplitHandler.h │ │ │ │ │ │ │ ├── SplitHandlerOut.cpp │ │ │ │ │ │ │ ├── SplitRegister.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Bundles │ │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ │ ├── Alone.dsp │ │ │ │ │ │ │ ├── Alone.dsw │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ ├── Format7zExtractR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ │ └── Format7zR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── resource.rc │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ │ ├── OffsetStream.cpp │ │ │ │ │ │ ├── OffsetStream.h │ │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ │ └── VirtThread.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── Bcj2Coder.cpp │ │ │ │ │ │ ├── Bcj2Coder.h │ │ │ │ │ │ ├── Bcj2Register.cpp │ │ │ │ │ │ ├── BcjCoder.cpp │ │ │ │ │ │ ├── BcjCoder.h │ │ │ │ │ │ ├── BcjRegister.cpp │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ ├── BranchMisc.cpp │ │ │ │ │ │ ├── BranchMisc.h │ │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ │ ├── ByteSwap.h │ │ │ │ │ │ ├── ByteSwapRegister.cpp │ │ │ │ │ │ ├── CodecExports.cpp │ │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ │ ├── Exception.h │ │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ │ ├── LzmaBenchCon.cpp │ │ │ │ │ │ │ ├── LzmaBenchCon.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── lzma │ │ │ │ │ │ │ ├── lzma_alone │ │ │ │ │ │ │ ├── lzma_version.h │ │ │ │ │ │ │ ├── lzmp.cpp │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ │ ├── LzmaDecoder.cpp │ │ │ │ │ │ ├── LzmaDecoder.h │ │ │ │ │ │ ├── LzmaEncoder.cpp │ │ │ │ │ │ ├── LzmaEncoder.h │ │ │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── ICoder.h │ │ │ │ │ ├── IDecl.h │ │ │ │ │ ├── IPassword.h │ │ │ │ │ ├── IProgress.h │ │ │ │ │ ├── IStream.h │ │ │ │ │ ├── MyVersion.h │ │ │ │ │ ├── MyVersionInfo.rc │ │ │ │ │ ├── PropID.h │ │ │ │ │ └── UI │ │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ │ ├── Client7z.dsp │ │ │ │ │ │ ├── Client7z.dsw │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── makefile │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ │ ├── DirItem.h │ │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ │ ├── Extract.h │ │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ │ ├── Update.cpp │ │ │ │ │ │ ├── Update.h │ │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ └── ZipRegistry.h │ │ │ │ │ │ └── Console │ │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ │ ├── List.cpp │ │ │ │ │ │ ├── List.h │ │ │ │ │ │ ├── Main.cpp │ │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ │ └── makefile │ │ │ │ ├── Build.mak │ │ │ │ ├── Common │ │ │ │ │ ├── AutoPtr.h │ │ │ │ │ ├── Buffer.h │ │ │ │ │ ├── CRC.cpp │ │ │ │ │ ├── C_FileIO.cpp │ │ │ │ │ ├── C_FileIO.h │ │ │ │ │ ├── ComTry.h │ │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ │ ├── CommandLineParser.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── DynamicBuffer.h │ │ │ │ │ ├── IntToString.cpp │ │ │ │ │ ├── IntToString.h │ │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ │ ├── ListFileUtils.h │ │ │ │ │ ├── MyCom.h │ │ │ │ │ ├── MyException.h │ │ │ │ │ ├── MyGuidDef.h │ │ │ │ │ ├── MyInitGuid.h │ │ │ │ │ ├── MyString.cpp │ │ │ │ │ ├── MyString.h │ │ │ │ │ ├── MyUnknown.h │ │ │ │ │ ├── MyVector.cpp │ │ │ │ │ ├── MyVector.h │ │ │ │ │ ├── MyWindows.h │ │ │ │ │ ├── NewHandler.cpp │ │ │ │ │ ├── NewHandler.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── StdInStream.cpp │ │ │ │ │ ├── StdInStream.h │ │ │ │ │ ├── StdOutStream.cpp │ │ │ │ │ ├── StdOutStream.h │ │ │ │ │ ├── StringConvert.cpp │ │ │ │ │ ├── StringConvert.h │ │ │ │ │ ├── StringToInt.cpp │ │ │ │ │ ├── StringToInt.h │ │ │ │ │ ├── Types.h │ │ │ │ │ ├── UTFConvert.cpp │ │ │ │ │ ├── UTFConvert.h │ │ │ │ │ ├── Wildcard.cpp │ │ │ │ │ └── Wildcard.h │ │ │ │ └── Windows │ │ │ │ │ ├── DLL.cpp │ │ │ │ │ ├── DLL.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── Error.cpp │ │ │ │ │ ├── Error.h │ │ │ │ │ ├── FileDir.cpp │ │ │ │ │ ├── FileDir.h │ │ │ │ │ ├── FileFind.cpp │ │ │ │ │ ├── FileFind.h │ │ │ │ │ ├── FileIO.cpp │ │ │ │ │ ├── FileIO.h │ │ │ │ │ ├── FileMapping.cpp │ │ │ │ │ ├── FileMapping.h │ │ │ │ │ ├── FileName.cpp │ │ │ │ │ ├── FileName.h │ │ │ │ │ ├── Handle.h │ │ │ │ │ ├── MemoryLock.cpp │ │ │ │ │ ├── MemoryLock.h │ │ │ │ │ ├── PropVariant.cpp │ │ │ │ │ ├── PropVariant.h │ │ │ │ │ ├── PropVariantConversions.cpp │ │ │ │ │ ├── PropVariantConversions.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ ├── Synchronization.h │ │ │ │ │ ├── System.cpp │ │ │ │ │ ├── System.h │ │ │ │ │ ├── Thread.h │ │ │ │ │ ├── Time.cpp │ │ │ │ │ └── Time.h │ │ │ ├── CS │ │ │ │ └── 7zip │ │ │ │ │ ├── Common │ │ │ │ │ ├── CRC.cs │ │ │ │ │ ├── CommandLineParser.cs │ │ │ │ │ ├── InBuffer.cs │ │ │ │ │ └── OutBuffer.cs │ │ │ │ │ ├── Compress │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ │ └── LzmaEncoder.cs │ │ │ │ │ ├── LzmaAlone │ │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ │ │ ├── LzmaAlone.sln │ │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ │ └── Settings.cs │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ │ └── ICoder.cs │ │ │ ├── Java │ │ │ │ └── SevenZip │ │ │ │ │ ├── CRC.java │ │ │ │ │ ├── Compression │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── BinTree.java │ │ │ │ │ │ ├── InWindow.java │ │ │ │ │ │ └── OutWindow.java │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── Base.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ │ │ ├── Decoder.java │ │ │ │ │ │ └── Encoder.java │ │ │ │ │ ├── ICodeProgress.java │ │ │ │ │ ├── LzmaAlone.java │ │ │ │ │ └── LzmaBench.java │ │ │ ├── Methods.txt │ │ │ ├── history.txt │ │ │ └── lzma.txt │ │ ├── pseudo-file.example │ │ └── squashfs-tools │ │ │ ├── Makefile │ │ │ ├── compressor.c │ │ │ ├── compressor.h │ │ │ ├── gzip_wrapper.c │ │ │ ├── lzma_wrapper.c │ │ │ ├── lzma_xz_options.c │ │ │ ├── lzma_xz_options.h │ │ │ ├── lzma_xz_wrapper.c │ │ │ ├── lzo_wrapper.c │ │ │ ├── mksquashfs.c │ │ │ ├── mksquashfs.h │ │ │ ├── pseudo.c │ │ │ ├── pseudo.h │ │ │ ├── read_fs.c │ │ │ ├── read_fs.h │ │ │ ├── read_xattrs.c │ │ │ ├── sort.c │ │ │ ├── sort.h │ │ │ ├── squashfs_compat.h │ │ │ ├── squashfs_fs.h │ │ │ ├── squashfs_swap.h │ │ │ ├── swap.c │ │ │ ├── unsquash-1.c │ │ │ ├── unsquash-2.c │ │ │ ├── unsquash-3.c │ │ │ ├── unsquash-4.c │ │ │ ├── unsquashfs.c │ │ │ ├── unsquashfs.h │ │ │ ├── unsquashfs_xattr.c │ │ │ ├── xattr.c │ │ │ ├── xattr.h │ │ │ ├── xz_wrapper.c │ │ │ └── xz_wrapper.h │ └── squashfs-hg55x-bin │ │ ├── README │ │ └── unsquashfs ├── splitter3.cc ├── squashfs-2.1-r2 │ ├── Makefile │ ├── mksquashfs.c │ ├── mksquashfs.h │ ├── read_fs.c │ ├── read_fs.h │ ├── sort.c │ ├── squashfs_fs.h │ └── unsquashfs.c ├── squashfs-3.0-lzma-damn-small-variant │ ├── Makefile │ ├── global.h │ ├── lzma │ │ ├── .built │ │ ├── .unpacked │ │ ├── 7zC.txt │ │ ├── 7zFormat.txt │ │ ├── C │ │ │ ├── 7zip │ │ │ │ ├── Archive │ │ │ │ │ └── 7z_C │ │ │ │ │ │ ├── 7zAlloc.c │ │ │ │ │ │ ├── 7zAlloc.h │ │ │ │ │ │ ├── 7zBuffer.c │ │ │ │ │ │ ├── 7zBuffer.h │ │ │ │ │ │ ├── 7zCrc.c │ │ │ │ │ │ ├── 7zCrc.h │ │ │ │ │ │ ├── 7zDecode.c │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ ├── 7zExtract.c │ │ │ │ │ │ ├── 7zExtract.h │ │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ ├── 7zIn.c │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ ├── 7zItem.c │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ ├── 7zMain.c │ │ │ │ │ │ ├── 7zMethodID.c │ │ │ │ │ │ ├── 7zMethodID.h │ │ │ │ │ │ ├── 7zTypes.h │ │ │ │ │ │ ├── 7z_C.dsp │ │ │ │ │ │ ├── 7z_C.dsw │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── makefile.gcc │ │ │ │ ├── Common │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ └── StreamUtils.h │ │ │ │ ├── Compress │ │ │ │ │ ├── Branch │ │ │ │ │ │ ├── ARM.cpp │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ ├── ARMThumb.cpp │ │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ │ ├── BranchARM.c │ │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ │ ├── BranchARMThumb.c │ │ │ │ │ │ ├── BranchARMThumb.h │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ ├── BranchIA64.c │ │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ │ ├── BranchPPC.c │ │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ │ ├── BranchSPARC.c │ │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ │ ├── BranchX86.c │ │ │ │ │ │ ├── BranchX86.h │ │ │ │ │ │ ├── IA64.cpp │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ ├── PPC.cpp │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ ├── SPARC.cpp │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── x86.cpp │ │ │ │ │ │ ├── x86.h │ │ │ │ │ │ ├── x86_2.cpp │ │ │ │ │ │ └── x86_2.h │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── BinTree │ │ │ │ │ │ │ ├── BinTree.h │ │ │ │ │ │ │ ├── BinTree2.h │ │ │ │ │ │ │ ├── BinTree3.h │ │ │ │ │ │ │ ├── BinTree3Z.h │ │ │ │ │ │ │ ├── BinTree4.h │ │ │ │ │ │ │ ├── BinTree4b.h │ │ │ │ │ │ │ └── BinTreeMain.h │ │ │ │ │ │ ├── HashChain │ │ │ │ │ │ │ ├── HC.h │ │ │ │ │ │ │ ├── HC2.h │ │ │ │ │ │ │ ├── HC3.h │ │ │ │ │ │ │ ├── HC4.h │ │ │ │ │ │ │ ├── HC4b.h │ │ │ │ │ │ │ └── HCMain.h │ │ │ │ │ │ ├── IMatchFinder.h │ │ │ │ │ │ ├── LZInWindow.cpp │ │ │ │ │ │ ├── LZInWindow.h │ │ │ │ │ │ ├── LZOutWindow.cpp │ │ │ │ │ │ ├── LZOutWindow.h │ │ │ │ │ │ ├── Patricia │ │ │ │ │ │ │ ├── Pat.h │ │ │ │ │ │ │ ├── Pat2.h │ │ │ │ │ │ │ ├── Pat2H.h │ │ │ │ │ │ │ ├── Pat2R.h │ │ │ │ │ │ │ ├── Pat3H.h │ │ │ │ │ │ │ ├── Pat4H.h │ │ │ │ │ │ │ └── PatMain.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LZMA.h │ │ │ │ │ │ ├── LZMADecoder.cpp │ │ │ │ │ │ ├── LZMADecoder.h │ │ │ │ │ │ ├── LZMAEncoder.cpp │ │ │ │ │ │ ├── LZMAEncoder.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ ├── LzmaRam.cpp │ │ │ │ │ │ ├── LzmaRam.h │ │ │ │ │ │ ├── LzmaRamDecode.c │ │ │ │ │ │ ├── LzmaRamDecode.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ ├── LZMA_C │ │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ │ ├── LzmaDecodeSize.c │ │ │ │ │ │ ├── LzmaStateDecode.c │ │ │ │ │ │ ├── LzmaStateDecode.h │ │ │ │ │ │ ├── LzmaStateTest.c │ │ │ │ │ │ ├── LzmaTest.c │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── makefile.gcc │ │ │ │ │ ├── LZMA_Lib │ │ │ │ │ │ ├── ZLib.cpp │ │ │ │ │ │ ├── lzmaext.h │ │ │ │ │ │ └── makefile │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ ├── RangeCoderBit.cpp │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ ├── RangeCoderBitTree.h │ │ │ │ │ │ ├── RangeCoderOpt.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── ICoder.h │ │ │ │ └── IStream.h │ │ │ ├── Common │ │ │ │ ├── Alloc.cpp │ │ │ │ ├── Alloc.h │ │ │ │ ├── CRC.cpp │ │ │ │ ├── CRC.h │ │ │ │ ├── C_FileIO.cpp │ │ │ │ ├── C_FileIO.h │ │ │ │ ├── ComTry.h │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ ├── CommandLineParser.h │ │ │ │ ├── Defs.h │ │ │ │ ├── MyCom.h │ │ │ │ ├── MyGuidDef.h │ │ │ │ ├── MyInitGuid.h │ │ │ │ ├── MyUnknown.h │ │ │ │ ├── MyWindows.h │ │ │ │ ├── NewHandler.cpp │ │ │ │ ├── NewHandler.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── String.cpp │ │ │ │ ├── String.h │ │ │ │ ├── StringConvert.cpp │ │ │ │ ├── StringConvert.h │ │ │ │ ├── StringToInt.cpp │ │ │ │ ├── StringToInt.h │ │ │ │ ├── Types.h │ │ │ │ ├── Vector.cpp │ │ │ │ └── Vector.h │ │ │ └── Windows │ │ │ │ ├── Defs.h │ │ │ │ ├── FileIO.cpp │ │ │ │ ├── FileIO.h │ │ │ │ └── StdAfx.h │ │ ├── CPL.html │ │ ├── CS │ │ │ └── 7zip │ │ │ │ ├── Common │ │ │ │ ├── CRC.cs │ │ │ │ ├── CommandLineParser.cs │ │ │ │ ├── InBuffer.cs │ │ │ │ └── OutBuffer.cs │ │ │ │ ├── Compress │ │ │ │ ├── LZ │ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ │ ├── LzBinTree.cs │ │ │ │ │ ├── LzInWindow.cs │ │ │ │ │ └── LzOutWindow.cs │ │ │ │ ├── LZMA │ │ │ │ │ ├── LzmaBase.cs │ │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ │ └── LzmaEncoder.cs │ │ │ │ ├── LzmaAlone │ │ │ │ │ ├── LzmaAlone.cs │ │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ │ ├── LzmaAlone.sln │ │ │ │ │ ├── LzmaBench.cs │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ └── Settings.cs │ │ │ │ └── RangeCoder │ │ │ │ │ ├── RangeCoder.cs │ │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ │ └── RangeCoderBitTree.cs │ │ │ │ └── ICoder.cs │ │ ├── Java │ │ │ └── SevenZip │ │ │ │ ├── CRC.java │ │ │ │ ├── Compression │ │ │ │ ├── ICodeProgress.java │ │ │ │ ├── LZ │ │ │ │ │ ├── BinTree.java │ │ │ │ │ ├── InWindow.java │ │ │ │ │ └── OutWindow.java │ │ │ │ ├── LZMA │ │ │ │ │ ├── Base.java │ │ │ │ │ ├── Decoder.java │ │ │ │ │ └── Encoder.java │ │ │ │ └── RangeCoder │ │ │ │ │ ├── BitTreeDecoder.java │ │ │ │ │ ├── BitTreeEncoder.java │ │ │ │ │ ├── Decoder.java │ │ │ │ │ └── Encoder.java │ │ │ │ ├── LzmaAlone.java │ │ │ │ └── LzmaBench.java │ │ ├── LGPL.txt │ │ ├── Methods.txt │ │ ├── history.txt │ │ └── lzma.txt │ ├── mksquashfs.c │ ├── mksquashfs.h │ ├── read_fs.c │ ├── read_fs.h │ ├── sort.c │ ├── sort.h │ ├── squashfs_fs.h │ └── unsquashfs.c ├── squashfs-3.0 │ ├── Makefile │ ├── global.h │ ├── mksquashfs.c │ ├── mksquashfs.h │ ├── read_fs.c │ ├── read_fs.h │ ├── sort.c │ ├── sort.h │ ├── squashfs_fs.h │ └── unsquashfs.c ├── tpl-tool │ ├── doc │ │ ├── Image_layout │ │ └── Readme │ └── src │ │ ├── Makefile │ │ ├── md5.c │ │ ├── md5.h │ │ ├── tpl-factory-to-sysupgrade.sh │ │ └── tpl-tool.c ├── uncramfs-lzma │ ├── Makefile │ ├── README │ ├── VERSION │ ├── cramfs.h │ ├── cramfs_fs.h │ ├── lzma-rg │ │ ├── CPL.html │ │ ├── LGPL.txt │ │ ├── Makefile │ │ ├── SRC │ │ │ ├── .cvsignore │ │ │ ├── 7zip │ │ │ │ ├── Common │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Compress │ │ │ │ │ ├── Branch │ │ │ │ │ │ ├── ARM.cpp │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ ├── ARMThumb.cpp │ │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ │ ├── BranchARM.c │ │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ │ ├── BranchARMThumb.c │ │ │ │ │ │ ├── BranchARMThumb.h │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ ├── BranchIA64.c │ │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ │ ├── BranchPPC.c │ │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ │ ├── BranchX86.c │ │ │ │ │ │ ├── BranchX86.h │ │ │ │ │ │ ├── IA64.cpp │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ ├── PPC.cpp │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── x86.cpp │ │ │ │ │ │ ├── x86.h │ │ │ │ │ │ ├── x86_2.cpp │ │ │ │ │ │ └── x86_2.h │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── BinTree │ │ │ │ │ │ │ ├── BinTree.h │ │ │ │ │ │ │ ├── BinTree2.h │ │ │ │ │ │ │ ├── BinTree3.h │ │ │ │ │ │ │ ├── BinTree3Z.h │ │ │ │ │ │ │ ├── BinTree3ZMain.h │ │ │ │ │ │ │ ├── BinTree4.h │ │ │ │ │ │ │ ├── BinTree4b.h │ │ │ │ │ │ │ ├── BinTreeMF.h │ │ │ │ │ │ │ ├── BinTreeMFMain.h │ │ │ │ │ │ │ └── BinTreeMain.h │ │ │ │ │ │ ├── HashChain │ │ │ │ │ │ │ ├── HC.h │ │ │ │ │ │ │ ├── HC2.h │ │ │ │ │ │ │ ├── HC3.h │ │ │ │ │ │ │ ├── HC4.h │ │ │ │ │ │ │ ├── HC4b.h │ │ │ │ │ │ │ ├── HCMF.h │ │ │ │ │ │ │ ├── HCMFMain.h │ │ │ │ │ │ │ └── HCMain.h │ │ │ │ │ │ ├── IMatchFinder.h │ │ │ │ │ │ ├── LZInWindow.cpp │ │ │ │ │ │ ├── LZInWindow.h │ │ │ │ │ │ ├── LZOutWindow.cpp │ │ │ │ │ │ ├── LZOutWindow.h │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Patricia │ │ │ │ │ │ │ ├── Pat.h │ │ │ │ │ │ │ ├── Pat2.h │ │ │ │ │ │ │ ├── Pat2H.h │ │ │ │ │ │ │ ├── Pat2R.h │ │ │ │ │ │ │ ├── Pat3H.h │ │ │ │ │ │ │ ├── Pat4H.h │ │ │ │ │ │ │ └── PatMain.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── LZMA.h │ │ │ │ │ │ ├── LZMADecoder.cpp │ │ │ │ │ │ ├── LZMADecoder.h │ │ │ │ │ │ ├── LZMAEncoder.cpp │ │ │ │ │ │ ├── LZMAEncoder.h │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ ├── AloneLZMA.dsp │ │ │ │ │ │ ├── AloneLZMA.dsw │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ ├── LzmaBench.cpp │ │ │ │ │ │ ├── LzmaBench.h │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.rg │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA_C │ │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ │ ├── LzmaTest.c │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.rg │ │ │ │ │ │ ├── decode.c │ │ │ │ │ │ ├── decode.c.orig │ │ │ │ │ │ └── decode.h │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ ├── RangeCoderBit.cpp │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ ├── RangeCoderBitTree.h │ │ │ │ │ │ ├── RangeCoderOpt.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── ICoder.h │ │ │ │ ├── IStream.h │ │ │ │ ├── Makefile │ │ │ │ └── lzma_encode.cpp │ │ │ ├── Common │ │ │ │ ├── Alloc.cpp │ │ │ │ ├── Alloc.h │ │ │ │ ├── CRC.cpp │ │ │ │ ├── CRC.h │ │ │ │ ├── C_FileIO.cpp │ │ │ │ ├── C_FileIO.h │ │ │ │ ├── ComTry.h │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ ├── CommandLineParser.h │ │ │ │ ├── Defs.h │ │ │ │ ├── Makefile │ │ │ │ ├── MyCom.h │ │ │ │ ├── MyUnknown.h │ │ │ │ ├── MyWindows.h │ │ │ │ ├── NewHandler.cpp │ │ │ │ ├── NewHandler.h │ │ │ │ ├── StdAfx.h │ │ │ │ ├── String.cpp │ │ │ │ ├── String.h │ │ │ │ ├── StringConvert.cpp │ │ │ │ ├── StringConvert.h │ │ │ │ ├── StringToInt.cpp │ │ │ │ ├── StringToInt.h │ │ │ │ ├── Types.h │ │ │ │ ├── Vector.cpp │ │ │ │ └── Vector.h │ │ │ ├── Makefile │ │ │ ├── Windows │ │ │ │ ├── Defs.h │ │ │ │ ├── FileIO.cpp │ │ │ │ ├── FileIO.h │ │ │ │ └── StdAfx.h │ │ │ ├── lzma.mak │ │ │ └── lzma_encode.h │ │ ├── history.txt │ │ └── lzma.txt │ └── lzma-uncramfs.c ├── uncramfs │ ├── Makefile │ ├── README │ ├── USE_CRAMFSCK_TO_EXTRACT_INSTEAD_SEE_CRAMFS-2.X_FOLDER │ ├── VERSION │ ├── cramfs.h │ ├── uncramfs-w.pl │ └── uncramfs.c ├── untrx.cc ├── untrx.h ├── webcomp-tools │ ├── Makefile │ ├── README │ ├── common.c │ ├── common.h │ ├── webdecomp.c │ └── webdecomp.h └── wrt_vx_imgtool │ ├── Makefile │ ├── imghdr.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── wrt54gv5_img.cpp ├── trunk ├── NOTE_no_need_to_sync_ver_file.txt ├── README └── firmware_mod_kit_version.txt ├── uncpio.sh ├── uncramfs_all.sh └── unsquashfs_all.sh /check_for_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/check_for_upgrade.sh -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . ./shared.inc 3 | Cleanup 4 | -------------------------------------------------------------------------------- /creating_ipkg_packages.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/creating_ipkg_packages.htm -------------------------------------------------------------------------------- /ddwrt-gui-extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/ddwrt-gui-extract.sh -------------------------------------------------------------------------------- /ddwrt-gui-rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/ddwrt-gui-rebuild.sh -------------------------------------------------------------------------------- /extract-firmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/extract-firmware.sh -------------------------------------------------------------------------------- /firmware_mod_kit.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/firmware_mod_kit.htm -------------------------------------------------------------------------------- /firmware_mod_kit_version.txt: -------------------------------------------------------------------------------- 1 | 0.82 2 | -------------------------------------------------------------------------------- /ipk_template/conffiles: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /ipk_template/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/ipk_template/control -------------------------------------------------------------------------------- /ipk_template/debian_binary: -------------------------------------------------------------------------------- 1 | 2.0 2 | -------------------------------------------------------------------------------- /ipk_template/make_ipk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/ipk_template/make_ipk.sh -------------------------------------------------------------------------------- /ipkg_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/ipkg_install.sh -------------------------------------------------------------------------------- /ipkg_install_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/ipkg_install_all.sh -------------------------------------------------------------------------------- /ipkg_remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/ipkg_remove.sh -------------------------------------------------------------------------------- /ipkg_remove_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/ipkg_remove_all.sh -------------------------------------------------------------------------------- /old-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/old-build.sh -------------------------------------------------------------------------------- /old-extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/old-extract.sh -------------------------------------------------------------------------------- /shared-ng.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/shared-ng.inc -------------------------------------------------------------------------------- /shared.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/shared.inc -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/addpattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/addpattern.c -------------------------------------------------------------------------------- /src/asustrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/asustrx.c -------------------------------------------------------------------------------- /src/bff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/bff/Makefile -------------------------------------------------------------------------------- /src/bff/bff_huffman_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/bff/bff_huffman_decompress.c -------------------------------------------------------------------------------- /src/bff/bffxtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/bff/bffxtractor.py -------------------------------------------------------------------------------- /src/binwalk-0.4.1/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/docs/README -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/Makefile.in -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/binwalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/binwalk.c -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/binwalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/binwalk.h -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/common.c -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/common.h -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/configure -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/configure.ac -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/file-5.07.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/file-5.07.tar.gz -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/filter.c -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/filter.h -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/magic.binarch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/magic.binarch -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/magic.bincast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/magic.bincast -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/magic.binwalk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/magic.binwalk -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/magic/magic.archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/magic/magic.archives -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/magic/magic.bootloaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/magic/magic.bootloaders -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/magic/magic.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/magic/magic.compressed -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/magic/magic.executables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/magic/magic.executables -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/magic/magic.filesystems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/magic/magic.filesystems -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/magic/magic.firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/magic/magic.firmware -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/magic/magic.kernels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/magic/magic.kernels -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/md5.c -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/md5.h -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/mparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/mparse.c -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/mparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/mparse.h -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/update.c -------------------------------------------------------------------------------- /src/binwalk-0.4.1/src/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-0.4.1/src/update.h -------------------------------------------------------------------------------- /src/binwalk-1.0/docs/API: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/docs/API -------------------------------------------------------------------------------- /src/binwalk-1.0/docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/docs/COPYING -------------------------------------------------------------------------------- /src/binwalk-1.0/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/docs/README -------------------------------------------------------------------------------- /src/binwalk-1.0/src/bin/binwalk: -------------------------------------------------------------------------------- 1 | ../binwalk/ -------------------------------------------------------------------------------- /src/binwalk-1.0/src/bin/binwalk-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/bin/binwalk-script -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/__init__.py -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/common.py -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/config.py -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/config/extract.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/config/extract.conf -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/extractor.py -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/filter.py -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/magic/binarch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/magic/binarch -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/magic/bincast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/magic/bincast -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/magic/binwalk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/magic/binwalk -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/parser.py -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/prettyprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/prettyprint.py -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/smartsig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/smartsig.py -------------------------------------------------------------------------------- /src/binwalk-1.0/src/binwalk/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/binwalk/update.py -------------------------------------------------------------------------------- /src/binwalk-1.0/src/build/scripts-2.7/binwalk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/build/scripts-2.7/binwalk -------------------------------------------------------------------------------- /src/binwalk-1.0/src/magic/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/magic/archives -------------------------------------------------------------------------------- /src/binwalk-1.0/src/magic/bootloaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/magic/bootloaders -------------------------------------------------------------------------------- /src/binwalk-1.0/src/magic/compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/magic/compressed -------------------------------------------------------------------------------- /src/binwalk-1.0/src/magic/crypto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/magic/crypto -------------------------------------------------------------------------------- /src/binwalk-1.0/src/magic/executables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/magic/executables -------------------------------------------------------------------------------- /src/binwalk-1.0/src/magic/filesystems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/magic/filesystems -------------------------------------------------------------------------------- /src/binwalk-1.0/src/magic/firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/magic/firmware -------------------------------------------------------------------------------- /src/binwalk-1.0/src/magic/images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/magic/images -------------------------------------------------------------------------------- /src/binwalk-1.0/src/magic/kernels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/magic/kernels -------------------------------------------------------------------------------- /src/binwalk-1.0/src/magic/lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/magic/lzma -------------------------------------------------------------------------------- /src/binwalk-1.0/src/magic/sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/magic/sql -------------------------------------------------------------------------------- /src/binwalk-1.0/src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/setup.py -------------------------------------------------------------------------------- /src/binwalk-1.0/src/support/lzma_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/binwalk-1.0/src/support/lzma_gen.py -------------------------------------------------------------------------------- /src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/configure -------------------------------------------------------------------------------- /src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/configure.ac -------------------------------------------------------------------------------- /src/cramfs-2.x/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfs-2.x/COPYING -------------------------------------------------------------------------------- /src/cramfs-2.x/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfs-2.x/GNUmakefile -------------------------------------------------------------------------------- /src/cramfs-2.x/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfs-2.x/NOTES -------------------------------------------------------------------------------- /src/cramfs-2.x/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfs-2.x/README -------------------------------------------------------------------------------- /src/cramfs-2.x/cramfsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfs-2.x/cramfsck.c -------------------------------------------------------------------------------- /src/cramfs-2.x/linux/cramfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfs-2.x/linux/cramfs_fs.h -------------------------------------------------------------------------------- /src/cramfs-2.x/linux/cramfs_fs_sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfs-2.x/linux/cramfs_fs_sb.h -------------------------------------------------------------------------------- /src/cramfs-2.x/mkcramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfs-2.x/mkcramfs.c -------------------------------------------------------------------------------- /src/cramfsswap/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfsswap/COPYING -------------------------------------------------------------------------------- /src/cramfsswap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfsswap/Makefile -------------------------------------------------------------------------------- /src/cramfsswap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfsswap/README -------------------------------------------------------------------------------- /src/cramfsswap/cramfsswap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfsswap/cramfsswap.1 -------------------------------------------------------------------------------- /src/cramfsswap/cramfsswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfsswap/cramfsswap.c -------------------------------------------------------------------------------- /src/cramfsswap/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfsswap/debian/changelog -------------------------------------------------------------------------------- /src/cramfsswap/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /src/cramfsswap/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfsswap/debian/control -------------------------------------------------------------------------------- /src/cramfsswap/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfsswap/debian/copyright -------------------------------------------------------------------------------- /src/cramfsswap/debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfsswap/debian/dirs -------------------------------------------------------------------------------- /src/cramfsswap/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /src/cramfsswap/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/cramfsswap/debian/rules -------------------------------------------------------------------------------- /src/crcalc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/crcalc/Makefile -------------------------------------------------------------------------------- /src/crcalc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/crcalc/README -------------------------------------------------------------------------------- /src/crcalc/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/crcalc/crc.c -------------------------------------------------------------------------------- /src/crcalc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/crcalc/crc.h -------------------------------------------------------------------------------- /src/crcalc/crcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/crcalc/crcalc.c -------------------------------------------------------------------------------- /src/crcalc/crcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/crcalc/crcalc.h -------------------------------------------------------------------------------- /src/crcalc/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/crcalc/md5.c -------------------------------------------------------------------------------- /src/crcalc/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/crcalc/md5.h -------------------------------------------------------------------------------- /src/crcalc/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/crcalc/patch.c -------------------------------------------------------------------------------- /src/crcalc/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/crcalc/patch.h -------------------------------------------------------------------------------- /src/firmware-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/Makefile -------------------------------------------------------------------------------- /src/firmware-tools/add_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/add_header.c -------------------------------------------------------------------------------- /src/firmware-tools/addpattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/addpattern.c -------------------------------------------------------------------------------- /src/firmware-tools/airlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/airlink.c -------------------------------------------------------------------------------- /src/firmware-tools/bcm_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/bcm_tag.h -------------------------------------------------------------------------------- /src/firmware-tools/buffalo-enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/buffalo-enc.c -------------------------------------------------------------------------------- /src/firmware-tools/buffalo-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/buffalo-lib.c -------------------------------------------------------------------------------- /src/firmware-tools/buffalo-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/buffalo-lib.h -------------------------------------------------------------------------------- /src/firmware-tools/buffalo-tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/buffalo-tag.c -------------------------------------------------------------------------------- /src/firmware-tools/buffalo-tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/buffalo-tftp.c -------------------------------------------------------------------------------- /src/firmware-tools/csysimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/csysimg.h -------------------------------------------------------------------------------- /src/firmware-tools/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/cyg_crc.h -------------------------------------------------------------------------------- /src/firmware-tools/cyg_crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/cyg_crc16.c -------------------------------------------------------------------------------- /src/firmware-tools/cyg_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/cyg_crc32.c -------------------------------------------------------------------------------- /src/firmware-tools/dgfirmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/dgfirmware.c -------------------------------------------------------------------------------- /src/firmware-tools/encode_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/encode_crc.c -------------------------------------------------------------------------------- /src/firmware-tools/fix-u-media-header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/fix-u-media-header.c -------------------------------------------------------------------------------- /src/firmware-tools/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/fw.h -------------------------------------------------------------------------------- /src/firmware-tools/imagetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/imagetag.c -------------------------------------------------------------------------------- /src/firmware-tools/imagetag.ggo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/imagetag.ggo -------------------------------------------------------------------------------- /src/firmware-tools/imagetag_cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/imagetag_cmdline.c -------------------------------------------------------------------------------- /src/firmware-tools/imagetag_cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/imagetag_cmdline.h -------------------------------------------------------------------------------- /src/firmware-tools/lzma2eva.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/lzma2eva.c -------------------------------------------------------------------------------- /src/firmware-tools/makeamitbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/makeamitbin.c -------------------------------------------------------------------------------- /src/firmware-tools/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/md5.c -------------------------------------------------------------------------------- /src/firmware-tools/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/md5.h -------------------------------------------------------------------------------- /src/firmware-tools/mkbrncmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkbrncmdline.c -------------------------------------------------------------------------------- /src/firmware-tools/mkbrnimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkbrnimg.c -------------------------------------------------------------------------------- /src/firmware-tools/mkcameofw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkcameofw.c -------------------------------------------------------------------------------- /src/firmware-tools/mkcasfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkcasfw.c -------------------------------------------------------------------------------- /src/firmware-tools/mkchkimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkchkimg.c -------------------------------------------------------------------------------- /src/firmware-tools/mkcsysimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkcsysimg.c -------------------------------------------------------------------------------- /src/firmware-tools/mkdapimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkdapimg.c -------------------------------------------------------------------------------- /src/firmware-tools/mkdir615h1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkdir615h1.c -------------------------------------------------------------------------------- /src/firmware-tools/mkdniimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkdniimg.c -------------------------------------------------------------------------------- /src/firmware-tools/mkedimaximg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkedimaximg.c -------------------------------------------------------------------------------- /src/firmware-tools/mkfwimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkfwimage.c -------------------------------------------------------------------------------- /src/firmware-tools/mkfwimage2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkfwimage2.c -------------------------------------------------------------------------------- /src/firmware-tools/mkmylofw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkmylofw.c -------------------------------------------------------------------------------- /src/firmware-tools/mkplanexfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkplanexfw.c -------------------------------------------------------------------------------- /src/firmware-tools/mktitanimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mktitanimg.c -------------------------------------------------------------------------------- /src/firmware-tools/mktitanimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mktitanimg.h -------------------------------------------------------------------------------- /src/firmware-tools/mktplinkfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mktplinkfw.c -------------------------------------------------------------------------------- /src/firmware-tools/mkwrgimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkwrgimg.c -------------------------------------------------------------------------------- /src/firmware-tools/mkzcfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkzcfw.c -------------------------------------------------------------------------------- /src/firmware-tools/mkzynfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/mkzynfw.c -------------------------------------------------------------------------------- /src/firmware-tools/motorola-bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/motorola-bin.c -------------------------------------------------------------------------------- /src/firmware-tools/myloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/myloader.h -------------------------------------------------------------------------------- /src/firmware-tools/nand_ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/nand_ecc.c -------------------------------------------------------------------------------- /src/firmware-tools/osbridge-crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/osbridge-crc.c -------------------------------------------------------------------------------- /src/firmware-tools/pc1crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/pc1crypt.c -------------------------------------------------------------------------------- /src/firmware-tools/ptgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/ptgen.c -------------------------------------------------------------------------------- /src/firmware-tools/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/readme.txt -------------------------------------------------------------------------------- /src/firmware-tools/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/seama.c -------------------------------------------------------------------------------- /src/firmware-tools/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/seama.h -------------------------------------------------------------------------------- /src/firmware-tools/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/sha1.c -------------------------------------------------------------------------------- /src/firmware-tools/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/sha1.h -------------------------------------------------------------------------------- /src/firmware-tools/spw303v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/spw303v.c -------------------------------------------------------------------------------- /src/firmware-tools/srec2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/srec2bin.c -------------------------------------------------------------------------------- /src/firmware-tools/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/trx.c -------------------------------------------------------------------------------- /src/firmware-tools/trx2edips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/trx2edips.c -------------------------------------------------------------------------------- /src/firmware-tools/trx2usr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/trx2usr.c -------------------------------------------------------------------------------- /src/firmware-tools/wndr3700.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/wndr3700.c -------------------------------------------------------------------------------- /src/firmware-tools/wrt400n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/wrt400n.c -------------------------------------------------------------------------------- /src/firmware-tools/xorimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/xorimage.c -------------------------------------------------------------------------------- /src/firmware-tools/zynos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/firmware-tools/zynos.h -------------------------------------------------------------------------------- /src/jffs2/mkfs.jffs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/jffs2/mkfs.jffs2 -------------------------------------------------------------------------------- /src/jffs2/unjffs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/jffs2/unjffs2 -------------------------------------------------------------------------------- /src/lzma/.built: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lzma/.unpacked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lzma/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/7zC.txt -------------------------------------------------------------------------------- /src/lzma/7zFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/7zFormat.txt -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zAlloc.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zAlloc.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zBuffer.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zBuffer.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zCrc.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zCrc.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zDecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zDecode.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zDecode.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zExtract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zExtract.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zExtract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zExtract.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zHeader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zHeader.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zHeader.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zIn.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zIn.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zItem.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zItem.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zMain.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zMethodID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zMethodID.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zMethodID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zMethodID.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7zTypes.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7z_C.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7z_C.dsp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7z_C.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/7z_C.dsw -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/makefile -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Archive/7z_C/makefile.gcc -------------------------------------------------------------------------------- /src/lzma/C/7zip/Common/FileStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Common/FileStreams.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Common/FileStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Common/FileStreams.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Common/InBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Common/InBuffer.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Common/InBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Common/InBuffer.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Common/OutBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Common/OutBuffer.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Common/OutBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Common/OutBuffer.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Common/StdAfx.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Common/StreamUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Common/StreamUtils.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Common/StreamUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Common/StreamUtils.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/ARM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/ARM.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/ARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/ARM.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/ARMThumb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/ARMThumb.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/ARMThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/ARMThumb.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchARM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchARM.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchARM.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchCoder.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchCoder.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchIA64.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchIA64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchIA64.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchPPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchPPC.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchPPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchPPC.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchSPARC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchSPARC.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchSPARC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchSPARC.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchX86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchX86.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchX86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/BranchX86.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/IA64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/IA64.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/IA64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/IA64.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/PPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/PPC.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/PPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/PPC.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/SPARC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/SPARC.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/SPARC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/SPARC.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/StdAfx.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/x86.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/x86.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/x86_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/x86_2.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/x86_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/Branch/x86_2.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/BinTree/BinTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/BinTree/BinTree.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/BinTree/BinTree2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/BinTree/BinTree2.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/BinTree/BinTree3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/BinTree/BinTree3.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/BinTree/BinTree3Z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/BinTree/BinTree3Z.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/BinTree/BinTree4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/BinTree/BinTree4.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/BinTree/BinTree4b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/BinTree/BinTree4b.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/HashChain/HC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/HashChain/HC.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/HashChain/HC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/HashChain/HC2.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/HashChain/HC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/HashChain/HC3.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/HashChain/HC4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/HashChain/HC4.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/HashChain/HC4b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/HashChain/HC4b.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/HashChain/HCMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/HashChain/HCMain.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/IMatchFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/IMatchFinder.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/LZInWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/LZInWindow.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/LZInWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/LZInWindow.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/LZOutWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/LZOutWindow.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/LZOutWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/LZOutWindow.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/Patricia/Pat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/Patricia/Pat.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/Patricia/Pat2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/Patricia/Pat2.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/Patricia/Pat2H.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/Patricia/Pat2H.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/Patricia/Pat2R.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/Patricia/Pat2R.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/Patricia/Pat3H.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/Patricia/Pat3H.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/Patricia/Pat4H.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/Patricia/Pat4H.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/Patricia/PatMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/Patricia/PatMain.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZ/StdAfx.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA/LZMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA/LZMA.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA/LZMADecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA/LZMADecoder.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA/LZMADecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA/LZMADecoder.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA/LZMAEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA/LZMAEncoder.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA/LZMAEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA/LZMAEncoder.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA/StdAfx.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_Alone/LzmaBench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_Alone/LzmaBench.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_Alone/LzmaRam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_Alone/LzmaRam.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_Alone/LzmaRam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_Alone/LzmaRam.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_Alone/StdAfx.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_Alone/StdAfx.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_Alone/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_Alone/makefile -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_C/LzmaDecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_C/LzmaDecode.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_C/LzmaDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_C/LzmaDecode.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_C/LzmaStateTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_C/LzmaStateTest.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_C/LzmaTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_C/LzmaTest.c -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_C/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_C/makefile -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_C/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_C/makefile.gcc -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_Lib/ZLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_Lib/ZLib.cpp -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_Lib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/LZMA_Lib/makefile -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/RangeCoder/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/Compress/RangeCoder/StdAfx.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/ICoder.h -------------------------------------------------------------------------------- /src/lzma/C/7zip/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/7zip/IStream.h -------------------------------------------------------------------------------- /src/lzma/C/Common/Alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/Alloc.cpp -------------------------------------------------------------------------------- /src/lzma/C/Common/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/Alloc.h -------------------------------------------------------------------------------- /src/lzma/C/Common/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/CRC.cpp -------------------------------------------------------------------------------- /src/lzma/C/Common/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/CRC.h -------------------------------------------------------------------------------- /src/lzma/C/Common/C_FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/C_FileIO.cpp -------------------------------------------------------------------------------- /src/lzma/C/Common/C_FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/C_FileIO.h -------------------------------------------------------------------------------- /src/lzma/C/Common/ComTry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/ComTry.h -------------------------------------------------------------------------------- /src/lzma/C/Common/CommandLineParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/CommandLineParser.cpp -------------------------------------------------------------------------------- /src/lzma/C/Common/CommandLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/CommandLineParser.h -------------------------------------------------------------------------------- /src/lzma/C/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/Defs.h -------------------------------------------------------------------------------- /src/lzma/C/Common/MyCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/MyCom.h -------------------------------------------------------------------------------- /src/lzma/C/Common/MyGuidDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/MyGuidDef.h -------------------------------------------------------------------------------- /src/lzma/C/Common/MyInitGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/MyInitGuid.h -------------------------------------------------------------------------------- /src/lzma/C/Common/MyUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/MyUnknown.h -------------------------------------------------------------------------------- /src/lzma/C/Common/MyWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/MyWindows.h -------------------------------------------------------------------------------- /src/lzma/C/Common/NewHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/NewHandler.cpp -------------------------------------------------------------------------------- /src/lzma/C/Common/NewHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/NewHandler.h -------------------------------------------------------------------------------- /src/lzma/C/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/StdAfx.h -------------------------------------------------------------------------------- /src/lzma/C/Common/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/String.cpp -------------------------------------------------------------------------------- /src/lzma/C/Common/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/String.h -------------------------------------------------------------------------------- /src/lzma/C/Common/StringConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/StringConvert.cpp -------------------------------------------------------------------------------- /src/lzma/C/Common/StringConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/StringConvert.h -------------------------------------------------------------------------------- /src/lzma/C/Common/StringToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/StringToInt.cpp -------------------------------------------------------------------------------- /src/lzma/C/Common/StringToInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/StringToInt.h -------------------------------------------------------------------------------- /src/lzma/C/Common/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/Types.h -------------------------------------------------------------------------------- /src/lzma/C/Common/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/Vector.cpp -------------------------------------------------------------------------------- /src/lzma/C/Common/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Common/Vector.h -------------------------------------------------------------------------------- /src/lzma/C/Windows/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Windows/Defs.h -------------------------------------------------------------------------------- /src/lzma/C/Windows/FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Windows/FileIO.cpp -------------------------------------------------------------------------------- /src/lzma/C/Windows/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Windows/FileIO.h -------------------------------------------------------------------------------- /src/lzma/C/Windows/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/C/Windows/StdAfx.h -------------------------------------------------------------------------------- /src/lzma/CPL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CPL.html -------------------------------------------------------------------------------- /src/lzma/CS/7zip/Common/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/Common/CRC.cs -------------------------------------------------------------------------------- /src/lzma/CS/7zip/Common/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/Common/CommandLineParser.cs -------------------------------------------------------------------------------- /src/lzma/CS/7zip/Common/InBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/Common/InBuffer.cs -------------------------------------------------------------------------------- /src/lzma/CS/7zip/Common/OutBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/Common/OutBuffer.cs -------------------------------------------------------------------------------- /src/lzma/CS/7zip/Compress/LZ/IMatchFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/Compress/LZ/IMatchFinder.cs -------------------------------------------------------------------------------- /src/lzma/CS/7zip/Compress/LZ/LzBinTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/Compress/LZ/LzBinTree.cs -------------------------------------------------------------------------------- /src/lzma/CS/7zip/Compress/LZ/LzInWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/Compress/LZ/LzInWindow.cs -------------------------------------------------------------------------------- /src/lzma/CS/7zip/Compress/LZ/LzOutWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/Compress/LZ/LzOutWindow.cs -------------------------------------------------------------------------------- /src/lzma/CS/7zip/Compress/LZMA/LzmaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/Compress/LZMA/LzmaBase.cs -------------------------------------------------------------------------------- /src/lzma/CS/7zip/Compress/LZMA/LzmaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/Compress/LZMA/LzmaDecoder.cs -------------------------------------------------------------------------------- /src/lzma/CS/7zip/Compress/LZMA/LzmaEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/Compress/LZMA/LzmaEncoder.cs -------------------------------------------------------------------------------- /src/lzma/CS/7zip/ICoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/CS/7zip/ICoder.cs -------------------------------------------------------------------------------- /src/lzma/Java/SevenZip/CRC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/Java/SevenZip/CRC.java -------------------------------------------------------------------------------- /src/lzma/Java/SevenZip/LzmaAlone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/Java/SevenZip/LzmaAlone.java -------------------------------------------------------------------------------- /src/lzma/Java/SevenZip/LzmaBench.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/Java/SevenZip/LzmaBench.java -------------------------------------------------------------------------------- /src/lzma/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/LGPL.txt -------------------------------------------------------------------------------- /src/lzma/Methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/Methods.txt -------------------------------------------------------------------------------- /src/lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/history.txt -------------------------------------------------------------------------------- /src/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/lzma/lzma.txt -------------------------------------------------------------------------------- /src/motorola-bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/motorola-bin.c -------------------------------------------------------------------------------- /src/others/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-2.0-nb4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-2.0-nb4/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/global.h -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/.built: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/.unpacked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/lzma/7zC.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/7zFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/lzma/7zFormat.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/CPL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/lzma/CPL.html -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/lzma/LGPL.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/Methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/lzma/Methods.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/lzma/history.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/lzma/lzma.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/mksquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/mksquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/mksquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/mksquashfs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/read_fs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/read_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/read_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/sort.c -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/sort.h -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/squashfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/squashfs_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/unsquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.0-e2100/unsquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-hg612-lzma/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/sqlzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-hg612-lzma/sqlzma.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/sqmagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-hg612-lzma/sqmagic.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/7zCrc.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/7zCrc.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/7zCrcT8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/7zCrcT8.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/Alloc.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/Alloc.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/CpuArch.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/IStream.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/Sort.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/Sort.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/Threads.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/Threads.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/C/Types.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/UI/Console/afxres.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/Build.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/CPP/Build.mak -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/sqlzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/sqlzma.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/sqmagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-lzma/sqmagic.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/global.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/mksquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/mksquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/mksquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/mksquashfs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/read_fs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/read_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/read_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/sort.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/sort.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/sqlzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/sqlzma.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/sqlzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/sqlzma.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/sqmagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/sqmagic.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/squashfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/squashfs_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/unsquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-rtn12/unsquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-wnr1000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-wnr1000/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-wnr1000/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-wnr1000/global.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-wnr1000/mksquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-wnr1000/mksquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-wnr1000/mksquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-wnr1000/mksquashfs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-wnr1000/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-wnr1000/read_fs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-wnr1000/read_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-wnr1000/read_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-wnr1000/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-wnr1000/sort.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-wnr1000/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-wnr1000/sort.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-wnr1000/sqlzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-wnr1000/sqlzma.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-wnr1000/sqlzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-wnr1000/sqlzma.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-wnr1000/unsquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2-wnr1000/unsquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2/global.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2/mksquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2/mksquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2/mksquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2/mksquashfs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2/read_fs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2/read_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2/read_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2/sort.c -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2/sort.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2/squashfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2/squashfs_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2/unsquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.2-r2/unsquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/.tmpdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/.tmpdeps -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/.topdeps: -------------------------------------------------------------------------------- 1 | squashfs 2 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/.topmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/.topmsg -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/debian/rules -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/squashfs-lzma-tools.dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/debian/watch -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/lzma/7zC.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/C/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/lzma/C/Sort.c -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/C/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/lzma/C/Sort.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/UI/Console/afxres.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/lzma/LGPL.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/lzma.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/lzma/lzma.exe -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/lzma/lzma.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/sqlzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/sqlzma.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/sqlzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/sqlzma.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/sqmagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-grml-lzma/sqmagic.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/7zCrc.c -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/7zCrc.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/7zCrcT8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/7zCrcT8.c -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/Alloc.c -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/Alloc.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/CpuArch.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/IStream.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/Sort.c -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/Sort.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/Threads.c -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/Threads.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/C/Types.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/7zip/ICoder.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/IDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/7zip/IDecl.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/7zip/IStream.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/PropID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/7zip/PropID.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/UI/Console/afxres.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Build.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/Build.mak -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/Common/CRC.cpp -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/Common/Defs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Common/MyCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/Common/MyCom.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Common/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/Common/Types.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Windows/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/Windows/DLL.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Windows/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/Windows/Defs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Windows/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/CPP/Windows/Time.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/sqlzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/sqlzma.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/sqmagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3-lzma/sqmagic.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.3/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3/global.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3/mksquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3/mksquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.3/mksquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3/mksquashfs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3/read_fs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.3/read_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3/read_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3/sort.c -------------------------------------------------------------------------------- /src/others/squashfs-3.3/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3/sort.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3/sqmagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3/sqmagic.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3/squashfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3/squashfs_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-3.3/unsquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.3/unsquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/7zC.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/7zFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/7zFormat.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/7zBuf.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/7zBuf.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/7zBuf2.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/7zCrc.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/7zCrc.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/7zFile.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/7zFile.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/7zStream.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/Alloc.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/Alloc.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/Bcj2.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/Bcj2.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/Bra.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/Bra.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/Bra86.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/BraIA64.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/CpuArch.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/LzFind.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/LzFind.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/LzFindMt.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/LzFindMt.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/LzHash.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/LzmaDec.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/LzmaDec.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/LzmaEnc.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/LzmaEnc.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/LzmaLib.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/LzmaLib.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/Threads.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/Threads.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/C/Types.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/Makefile: -------------------------------------------------------------------------------- 1 | ../../Makefile.src -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/Methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/Methods.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/history.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/lzma.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/lzma.exe -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-cisco/lzma/lzma.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/README.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/7zC.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/7zBuf.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/7zBuf.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/7zBuf2.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/7zCrc.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/7zCrc.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/7zFile.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/7zFile.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/Alloc.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/Alloc.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/Bcj2.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/Bcj2.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/Bra.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/Bra.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/Bra86.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/BraIA64.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/CpuArch.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/LzFind.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/LzFind.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/LzHash.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/LzmaDec.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/LzmaDec.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/LzmaEnc.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/LzmaEnc.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/LzmaLib.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/LzmaLib.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/Threads.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/Threads.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/Types.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/sqlzma.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/sqlzma.mk -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/uncomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/C/uncomp.c -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/Methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/Methods.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/history.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/lzma.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/lzma.exe -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/lzma465/lzma.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/mksquashfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/mksquashfs -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/sqlzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/sqlzma.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/sqmagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/sqmagic.h -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/squashfs3.4/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/squashfs3.4/CHANGES -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/squashfs3.4/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/squashfs3.4/COPYING -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/squashfs3.4/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/squashfs3.4/INSTALL -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/squashfs3.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-3.4-nb4/squashfs3.4/README -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/unsquashfs-lzma: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./unsquashfs -lzma $@ 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/README-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/README-4.0 -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/global.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/7zC.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/7zFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/7zFormat.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/7zBuf.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/7zBuf.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/7zBuf2.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/7zCrc.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/7zCrc.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/7zFile.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/7zFile.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/7zStream.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/7zVersion.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/Alloc.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/Alloc.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/Bcj2.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/Bcj2.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/Bra.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/Bra.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/Bra86.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/BraIA64.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/CpuArch.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/LzFind.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/LzFind.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/LzFindMt.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/LzFindMt.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/LzHash.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/LzmaDec.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/LzmaDec.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/LzmaEnc.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/LzmaEnc.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/LzmaLib.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/LzmaLib.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/Threads.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/Threads.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/C/Types.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/Build.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/CPP/Build.mak -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/Methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/Methods.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/history.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/lzma/lzma.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/mksquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/mksquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/mksquashfs.c.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/mksquashfs.c.orig -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/mksquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/mksquashfs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/pseudo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/pseudo.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/pseudo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/pseudo.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/read_fs.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/read_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/read_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/sort.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/sort.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/squashfs_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/squashfs_compat.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/squashfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/squashfs_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/squashfs_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/squashfs_swap.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/swap.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/uncompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/uncompress.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/uncompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/uncompress.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/unsquash-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/unsquash-1.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/unsquash-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/unsquash-2.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/unsquash-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/unsquash-3.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/unsquash-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/unsquash-4.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/unsquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/unsquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/unsquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-lzma/unsquashfs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/compressor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/compressor.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/compressor.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/global.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/gzip_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/gzip_wrapper.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/7zC.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/7zBuf.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/7zBuf.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/7zBuf2.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/7zCrc.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/7zCrc.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/7zFile.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/7zFile.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/Alloc.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/Alloc.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/Bcj2.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/Bcj2.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/Bra.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/Bra.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/Bra86.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/LzFind.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/LzFind.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/LzHash.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/C/Types.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma/lzma.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/lzma_wrapper.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/mksquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/mksquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/mksquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/mksquashfs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/pseudo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/pseudo.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/pseudo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/pseudo.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/read_fs.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/read_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/read_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/sort.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/sort.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/squashfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/squashfs_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/squashfs_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/squashfs_swap.h -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/swap.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/unsquash-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/unsquash-1.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/unsquash-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/unsquash-2.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/unsquash-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/unsquash-3.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/unsquash-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/unsquash-4.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/unsquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/unsquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/unsquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.0-realtek/unsquashfs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/compressor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/compressor.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/compressor.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/gzip_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/gzip_wrapper.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/lzma_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/lzma_wrapper.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/lzo_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/lzo_wrapper.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/mksquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/mksquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/mksquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/mksquashfs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/pseudo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/pseudo.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/pseudo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/pseudo.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/read_fs.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/read_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/read_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/read_xattrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/read_xattrs.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/sort.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/sort.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/squashfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/squashfs_fs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/swap.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/unsquash-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/unsquash-1.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/unsquash-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/unsquash-2.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/unsquash-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/unsquash-3.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/unsquash-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/unsquash-4.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/unsquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/unsquashfs.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/unsquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/unsquashfs.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/xattr.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/xattr.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/xz_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/xz_wrapper.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2-official/xz_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2-official/xz_wrapper.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/ACKNOWLEDGEMENTS -------------------------------------------------------------------------------- /src/others/squashfs-4.2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/CHANGES -------------------------------------------------------------------------------- /src/others/squashfs-4.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/COPYING -------------------------------------------------------------------------------- /src/others/squashfs-4.2/DONATIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/DONATIONS -------------------------------------------------------------------------------- /src/others/squashfs-4.2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/INSTALL -------------------------------------------------------------------------------- /src/others/squashfs-4.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/Makefile -------------------------------------------------------------------------------- /src/others/squashfs-4.2/OLD-READMEs/README-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/OLD-READMEs/README-2.0 -------------------------------------------------------------------------------- /src/others/squashfs-4.2/OLD-READMEs/README-2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/OLD-READMEs/README-2.1 -------------------------------------------------------------------------------- /src/others/squashfs-4.2/PERFORMANCE.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/PERFORMANCE.README -------------------------------------------------------------------------------- /src/others/squashfs-4.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/README -------------------------------------------------------------------------------- /src/others/squashfs-4.2/README-4.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/README-4.2 -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/.built: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/.built_check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/.configured: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/.prepared1a23cc84ca172080ca2c2f332cb31052: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/.prepared1a23cc84ca172080ca2c2f332cb31052_check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/7zC.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/7zBuf.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/7zBuf.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/7zBuf2.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/7zCrc.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/7zCrc.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/7zFile.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/7zFile.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/Alloc.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/Alloc.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/Bcj2.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/Bcj2.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/Bra.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/Bra.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/Bra86.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/LzFind.c -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/LzFind.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/LzHash.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/C/Types.h -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/lzma-4.65/lzma.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.2/pseudo-file.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-4.2/pseudo-file.example -------------------------------------------------------------------------------- /src/others/squashfs-hg55x-bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-hg55x-bin/README -------------------------------------------------------------------------------- /src/others/squashfs-hg55x-bin/unsquashfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/others/squashfs-hg55x-bin/unsquashfs -------------------------------------------------------------------------------- /src/splitter3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/splitter3.cc -------------------------------------------------------------------------------- /src/squashfs-2.1-r2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-2.1-r2/Makefile -------------------------------------------------------------------------------- /src/squashfs-2.1-r2/mksquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-2.1-r2/mksquashfs.c -------------------------------------------------------------------------------- /src/squashfs-2.1-r2/mksquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-2.1-r2/mksquashfs.h -------------------------------------------------------------------------------- /src/squashfs-2.1-r2/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-2.1-r2/read_fs.c -------------------------------------------------------------------------------- /src/squashfs-2.1-r2/read_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-2.1-r2/read_fs.h -------------------------------------------------------------------------------- /src/squashfs-2.1-r2/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-2.1-r2/sort.c -------------------------------------------------------------------------------- /src/squashfs-2.1-r2/squashfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-2.1-r2/squashfs_fs.h -------------------------------------------------------------------------------- /src/squashfs-2.1-r2/unsquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-2.1-r2/unsquashfs.c -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/.built: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/.unpacked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/squashfs-3.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-3.0/Makefile -------------------------------------------------------------------------------- /src/squashfs-3.0/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-3.0/global.h -------------------------------------------------------------------------------- /src/squashfs-3.0/mksquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-3.0/mksquashfs.c -------------------------------------------------------------------------------- /src/squashfs-3.0/mksquashfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-3.0/mksquashfs.h -------------------------------------------------------------------------------- /src/squashfs-3.0/read_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-3.0/read_fs.c -------------------------------------------------------------------------------- /src/squashfs-3.0/read_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-3.0/read_fs.h -------------------------------------------------------------------------------- /src/squashfs-3.0/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-3.0/sort.c -------------------------------------------------------------------------------- /src/squashfs-3.0/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-3.0/sort.h -------------------------------------------------------------------------------- /src/squashfs-3.0/squashfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-3.0/squashfs_fs.h -------------------------------------------------------------------------------- /src/squashfs-3.0/unsquashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/squashfs-3.0/unsquashfs.c -------------------------------------------------------------------------------- /src/tpl-tool/doc/Image_layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/tpl-tool/doc/Image_layout -------------------------------------------------------------------------------- /src/tpl-tool/doc/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/tpl-tool/doc/Readme -------------------------------------------------------------------------------- /src/tpl-tool/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/tpl-tool/src/Makefile -------------------------------------------------------------------------------- /src/tpl-tool/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/tpl-tool/src/md5.c -------------------------------------------------------------------------------- /src/tpl-tool/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/tpl-tool/src/md5.h -------------------------------------------------------------------------------- /src/tpl-tool/src/tpl-tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/tpl-tool/src/tpl-tool.c -------------------------------------------------------------------------------- /src/uncramfs-lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/Makefile -------------------------------------------------------------------------------- /src/uncramfs-lzma/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/README -------------------------------------------------------------------------------- /src/uncramfs-lzma/VERSION: -------------------------------------------------------------------------------- 1 | VERSION="0.7rg" 2 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/cramfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/cramfs.h -------------------------------------------------------------------------------- /src/uncramfs-lzma/cramfs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/cramfs_fs.h -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/CPL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/CPL.html -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/LGPL.txt -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/Makefile -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/.cvsignore: -------------------------------------------------------------------------------- 1 | lzma 2 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/7zip/ICoder.h -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/7zip/IStream.h -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/7zip/Makefile -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Common/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/Common/Alloc.h -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Common/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/Common/CRC.cpp -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Common/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/Common/CRC.h -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/Common/Defs.h -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Common/MyCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/Common/MyCom.h -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Common/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/Common/Types.h -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/Makefile -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Windows/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/Windows/Defs.h -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/lzma.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/lzma.mak -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/lzma_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/SRC/lzma_encode.h -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/history.txt -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-rg/lzma.txt -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-uncramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs-lzma/lzma-uncramfs.c -------------------------------------------------------------------------------- /src/uncramfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs/Makefile -------------------------------------------------------------------------------- /src/uncramfs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs/README -------------------------------------------------------------------------------- /src/uncramfs/USE_CRAMFSCK_TO_EXTRACT_INSTEAD_SEE_CRAMFS-2.X_FOLDER: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /src/uncramfs/VERSION: -------------------------------------------------------------------------------- 1 | VERSION="0.7" 2 | -------------------------------------------------------------------------------- /src/uncramfs/cramfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs/cramfs.h -------------------------------------------------------------------------------- /src/uncramfs/uncramfs-w.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs/uncramfs-w.pl -------------------------------------------------------------------------------- /src/uncramfs/uncramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/uncramfs/uncramfs.c -------------------------------------------------------------------------------- /src/untrx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/untrx.cc -------------------------------------------------------------------------------- /src/untrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/untrx.h -------------------------------------------------------------------------------- /src/webcomp-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/webcomp-tools/Makefile -------------------------------------------------------------------------------- /src/webcomp-tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/webcomp-tools/README -------------------------------------------------------------------------------- /src/webcomp-tools/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/webcomp-tools/common.c -------------------------------------------------------------------------------- /src/webcomp-tools/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/webcomp-tools/common.h -------------------------------------------------------------------------------- /src/webcomp-tools/webdecomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/webcomp-tools/webdecomp.c -------------------------------------------------------------------------------- /src/webcomp-tools/webdecomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/webcomp-tools/webdecomp.h -------------------------------------------------------------------------------- /src/wrt_vx_imgtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/wrt_vx_imgtool/Makefile -------------------------------------------------------------------------------- /src/wrt_vx_imgtool/imghdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/wrt_vx_imgtool/imghdr.h -------------------------------------------------------------------------------- /src/wrt_vx_imgtool/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/wrt_vx_imgtool/stdafx.cpp -------------------------------------------------------------------------------- /src/wrt_vx_imgtool/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/wrt_vx_imgtool/stdafx.h -------------------------------------------------------------------------------- /src/wrt_vx_imgtool/wrt54gv5_img.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/src/wrt_vx_imgtool/wrt54gv5_img.cpp -------------------------------------------------------------------------------- /trunk/NOTE_no_need_to_sync_ver_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/trunk/NOTE_no_need_to_sync_ver_file.txt -------------------------------------------------------------------------------- /trunk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/trunk/README -------------------------------------------------------------------------------- /trunk/firmware_mod_kit_version.txt: -------------------------------------------------------------------------------- 1 | 0.78 beta 2 | -------------------------------------------------------------------------------- /uncpio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/uncpio.sh -------------------------------------------------------------------------------- /uncramfs_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/uncramfs_all.sh -------------------------------------------------------------------------------- /unsquashfs_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/firmware-mod-kit/HEAD/unsquashfs_all.sh --------------------------------------------------------------------------------