Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
LzmaDec.c | H A D | 22-Dec-2012 | 26.8 KiB | 1,026 | 891 | |
LzmaDec.h | H A D | 22-Dec-2012 | 6.6 KiB | 224 | 63 | |
LzmaTools.c | H A D | 06-May-2018 | 3.5 KiB | 124 | 70 | |
LzmaTools.h | H A D | 06-May-2018 | 498 | 19 | 6 | |
Makefile | H A D | 06-May-2018 | 294 | 12 | 2 | |
README.txt | H A D | 18-Apr-2010 | 1,023 | 29 | 19 | |
Types.h | H A D | 22-Dec-2012 | 5 KiB | 235 | 161 | |
history.txt | H A D | 22-Dec-2012 | 6.9 KiB | 272 | 191 | |
import_lzmasdk.sh | H A D | 18-Apr-2010 | 527 | 37 | 28 | |
license.txt | H A D | 18-Apr-2010 | 65 | 4 | 2 | |
lzma.txt | H A D | 22-Dec-2012 | 19.2 KiB | 599 | 423 |
README.txt
1The lib_lzma functionality was written by Igor Pavlov. 2The original source cames from the LZMA SDK web page: 3 4URL: http://www.7-zip.org/sdk.html 5Author: Igor Pavlov 6 7The import is made using the import_lzmasdk.sh script that: 8 9* untars the lzmaXYY.tar.bz2 file (from the download web page) 10* copies the files LzmaDec.h, Types.h, LzmaDec.c, history.txt, 11 and lzma.txt from source archive into the lib_lzma directory (pwd). 12 13Example: 14 15 . import_lzmasdk.sh ~/lzma465.tar.bz2 16 17Notice: The files from lzma sdk are _not modified_ by this script! 18 19The files LzmaTools.{c,h} are provided to export the lzmaBuffToBuffDecompress() 20function that wraps the complex LzmaDecode() function from the LZMA SDK. The 21do_bootm() function uses the lzmaBuffToBuffDecopress() function to expand the 22compressed image. 23 24The directory U-BOOT/include/lzma contains stubs files that permit to use the 25library directly from U-BOOT code without touching the original LZMA SDK's 26files. 27 28Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 29