010-disable_old_squashfs_compatibility.patch 930 B

12345678910111213141516171819202122232425
  1. diff -Nur linux-2.4.32/fs/squashfs/Makefile linux-2.4.32-owrt/fs/squashfs/Makefile
  2. --- linux-2.4.32/fs/squashfs/Makefile 2006-03-21 13:47:50.000000000 +0100
  3. +++ linux-2.4.32-owrt/fs/squashfs/Makefile 2006-03-21 13:48:49.000000000 +0100
  4. @@ -4,7 +4,7 @@
  5. O_TARGET := squashfs.o
  6. -obj-y := inode.o squashfs2_0.o LzmaDecode.o
  7. +obj-y := inode.o LzmaDecode.o
  8. obj-m := $(O_TARGET)
  9. diff -Nur linux-2.4.32/fs/squashfs/squashfs.h linux-2.4.32-owrt/fs/squashfs/squashfs.h
  10. --- linux-2.4.32/fs/squashfs/squashfs.h 2006-03-21 13:06:10.000000000 +0100
  11. +++ linux-2.4.32-owrt/fs/squashfs/squashfs.h 2006-03-21 13:48:36.000000000 +0100
  12. @@ -24,6 +24,9 @@
  13. #ifdef CONFIG_SQUASHFS_1_0_COMPATIBILITY
  14. #undef CONFIG_SQUASHFS_1_0_COMPATIBILITY
  15. #endif
  16. +#ifdef CONFIG_SQUASHFS_2_0_COMPATIBILITY
  17. +#undef CONFIG_SQUASHFS_2_0_COMPATIBILITY
  18. +#endif
  19. #ifdef SQUASHFS_TRACE
  20. #define TRACE(s, args...) printk(KERN_NOTICE "SQUASHFS: "s, ## args)
  21. #else