# HG changeset patch # User Christopher Rogers # Date 1285875344 0 # Node ID ef37c8aa10732bbcc2a2936aaf566610571dc9fa # Parent 7e74961dc95341caab76dc39a2f8815a28367b35 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. diff -r 7e74961dc953 -r ef37c8aa1073 linux/stuff/linux-squashfs-lzma-2.6.34.u --- a/linux/stuff/linux-squashfs-lzma-2.6.34.u Thu Sep 30 18:24:44 2010 +0000 +++ b/linux/stuff/linux-squashfs-lzma-2.6.34.u Thu Sep 30 19:35:44 2010 +0000 @@ -635,3 +635,15 @@ +/* lzma wrapper.c */ +extern const struct squashfs_decompressor squashfs_lzma_comp_ops; +--- linux-2.6.34/lib/Makefile ++++ linux-2.6.34/lib/Makefile +@@ -69,7 +69,7 @@ obj-$(CONFIG_LZO_DECOMPRESS) += lzo/ + + lib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o + lib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o +-lib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o ++obj-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o + lib-$(CONFIG_DECOMPRESS_LZO) += decompress_unlzo.o + + obj-$(CONFIG_TEXTSEARCH) += textsearch.o +