config SQUASHFS
	tristate "SquashFS 3.4 LZMA - Squashed file system support"
	help
	  Kernel 2.6.30 originally featured SquashFS 4.0, which
	  albeit better optimised etc. still used the crappy Zlib
	  compression. So until a proper SquashFS is included,
	  the old LZMA-patched version 3.4 is the way to go.
	  It may contain extra vulnerabilities, it may be uglier
	  code, and it may be obsolete in a way -
	  but certainly not compression wise.

config SQUASHFS_EMBEDDED
	bool "Additional option for memory-constrained systems" 
	depends on SQUASHFS
	default n
	help
	  Saying Y here allows you to specify cache size.

	  If unsure, say N.

config SQUASHFS_FRAGMENT_CACHE_SIZE
	int "Number of fragments cached" if SQUASHFS_EMBEDDED
	depends on SQUASHFS
	default "3"
	help
	  By default SquashFS caches the last 3 fragments read from
	  the filesystem.  Increasing this amount may mean SquashFS
	  has to re-read fragments less often from disk, at the expense
	  of extra system memory.  Decreasing this amount will mean
	  SquashFS uses less memory at the expense of extra reads from disk.

	  Note there must be at least one cached fragment.  Anything
	  much more than three will probably not make much difference.