wok-stable rev 6488

Added parted of squashfs patch for kernel that was missing. I think its need since unlzma cause kernel oops. Its changes CONFIG_DECOMPRESS_LZMA to obj instead of a lib. I hope this didn't screw squashfs/kernel.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Sep 30 19:35:44 2010 +0000 (2010-09-30)
parents 7e74961dc953
children b46d3a514781
files linux/stuff/linux-squashfs-lzma-2.6.34.u
line diff
     1.1 --- a/linux/stuff/linux-squashfs-lzma-2.6.34.u	Thu Sep 30 18:24:44 2010 +0000
     1.2 +++ b/linux/stuff/linux-squashfs-lzma-2.6.34.u	Thu Sep 30 19:35:44 2010 +0000
     1.3 @@ -635,3 +635,15 @@
     1.4  +/* lzma wrapper.c */
     1.5  +extern const struct squashfs_decompressor squashfs_lzma_comp_ops;
     1.6  
     1.7 +--- linux-2.6.34/lib/Makefile
     1.8 ++++ linux-2.6.34/lib/Makefile
     1.9 +@@ -69,7 +69,7 @@ obj-$(CONFIG_LZO_DECOMPRESS) += lzo/
    1.10 + 
    1.11 + lib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o
    1.12 + lib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o
    1.13 +-lib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o
    1.14 ++obj-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o
    1.15 + lib-$(CONFIG_DECOMPRESS_LZO) += decompress_unlzo.o
    1.16 + 
    1.17 + obj-$(CONFIG_TEXTSEARCH) += textsearch.o
    1.18 +