summaryrefslogtreecommitdiff
path: root/core/lzo
Commit message (Collapse)AuthorAgeFilesLines
* lzo: Upgrade to LZO 2.07H. Peter Anvin2014-06-276-121/+7
| | | | | | Use version 2.07 of the LZO compression library. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* Merge tag 'syslinux-5.01' into firmwaresyslinux-6.00-pre4Matt Fleming2013-01-297-13/+38
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile NEWS com32/cmenu/Makefile com32/elflink/ldlinux/Makefile com32/gfxboot/Makefile com32/gpllib/Makefile com32/include/sys/module.h com32/lib/Makefile com32/lib/sys/module/elf_module.c com32/menu/Makefile com32/rosh/Makefile com32/samples/Makefile core/init.c mk/elf.mk Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * core/lzo: move LZO back to uncompressed sectionH. Peter Anvin2013-01-171-1/+1
| | | | | | | | | | | | | | The LZO decompressor really can't live in the compressed part of the core, for some odd reason. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
| * core: switch LZO decompressor to "fast safe" versionH. Peter Anvin2013-01-177-14/+39
| | | | | | | | | | | | | | | | Switch LZO decompressor to the "fast safe" version (and bump LZO source to version 2.06). This allows us to use that decompressor for module compression later without carrying another decompressor. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
* | Architecture dependency in LZO data compression library in subdirectory ↵chandramouli narayanan2012-06-253-1/+25
|/ | | | | | | | | | | | | | core/lzo/ is taken care to be able to build fo i386 for x86_64. The implementation of eflags() in call16.c supported only 32bit, but now includes x86_64 as well. com32 lib build depends on it. The file comboot.inc needed alignment specification for the variable ConfigName in order to keep the linker happy. It's not clear why this would be needed for EFI. Remanants of the unused old i386-only files, if any, need to be pruned.
* core: LZO compress the PM part of the coreH. Peter Anvin2009-05-207-0/+1314
Use LZO to compress the PM part of the core. LZO is not the best compression algorithm, but it is very fast, and the decompressor is only 447 bytes long. The LZO code is part of the LZO 2.03 library. Signed-off-by: H. Peter Anvin <hpa@zytor.com>