Changeset 19345


Ignore:
Timestamp:
06/09/12 14:00:15 (12 months ago)
Author:
BrainSlayer
Message:

lzma lib

Location:
src/linux/brcm/linux-2.6.23/lib
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • src/linux/brcm/linux-2.6.23/lib/Kconfig

    r12690 r19345  
    7979        tristate 
    8080 
     81config LZMA_COMPRESS 
     82    tristate 
     83 
     84config LZMA_DECOMPRESS 
     85    tristate 
     86 
    8187# 
    8288# Generic allocator support is selected if needed 
  • src/linux/brcm/linux-2.6.23/lib/Makefile

    r12690 r19345  
    22# Makefile for some libs needed in the kernel. 
    33# 
     4ifdef CONFIG_JFFS2_LZMA 
     5        CONFIG_LZMA_DECOMPRESS:=y 
     6        CONFIG_LZMA_COMPRESS:=y 
     7endif 
    48 
    59lib-y := ctype.o string.o vsprintf.o cmdline.o \ 
     
    5559obj-$(CONFIG_LZO_COMPRESS) += lzo/ 
    5660obj-$(CONFIG_LZO_DECOMPRESS) += lzo/ 
     61obj-$(CONFIG_LZMA_COMPRESS) += lzma/ 
     62obj-$(CONFIG_LZMA_DECOMPRESS) += lzma/ 
     63 
    5764 
    5865obj-$(CONFIG_TEXTSEARCH) += textsearch.o 
Note: See TracChangeset for help on using the changeset viewer.