home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / fs / squashfs / Kconfig next >
Encoding:
Text File  |  2006-08-11  |  2.6 KB  |  65 lines

  1. config SQUASHFS
  2.     tristate "SquashFS 3.0 - Squashed file system support"
  3.     select ZLIB_INFLATE
  4.     help
  5.       Saying Y here includes support for SquashFS 3.0 (a Compressed Read-Only File
  6.       System).  Squashfs is a highly compressed read-only filesystem for Linux.
  7.       It uses zlib compression to compress both files, inodes and directories.
  8.       Inodes in the system are very small and all blocks are packed to minimise
  9.       data overhead. Block sizes greater than 4K are supported up to a maximum of 64K.
  10.       SquashFS 3.0 supports 64 bit filesystems and files (larger than 4GB), full
  11.       uid/gid information, hard links and timestamps.
  12.  
  13.       Squashfs is intended for general read-only filesystem use, for archival
  14.       use (i.e. in cases where a .tar.gz file may be used), and in embedded
  15.       systems where low overhead is needed.  Further information and filesystem tools
  16.       are available from http://squashfs.sourceforge.net.
  17.  
  18.       If you want to compile this as a module ( = code which can be
  19.       inserted in and removed from the running kernel whenever you want),
  20.       say M here and read <file:Documentation/modules.txt>.  The module
  21.       will be called squashfs.  Note that the root file system (the one
  22.       containing the directory /) cannot be compiled as a module.
  23.  
  24.       If unsure, say N.
  25.  
  26. config SQUASHFS_EMBEDDED
  27.  
  28.     bool "Additional options for memory-constrained systems" 
  29.     depends on SQUASHFS
  30.     default n
  31.     help
  32.       Saying Y here allows you to specify cache sizes and how Squashfs
  33.       allocates memory.  This is only intended for memory constrained
  34.       systems.
  35.  
  36.       If unsure, say N.
  37.  
  38. config SQUASHFS_FRAGMENT_CACHE_SIZE
  39.     int "Number of fragments cached" if SQUASHFS_EMBEDDED
  40.     depends on SQUASHFS
  41.     default "3"
  42.     help
  43.       By default SquashFS caches the last 3 fragments read from
  44.       the filesystem.  Increasing this amount may mean SquashFS
  45.       has to re-read fragments less often from disk, at the expense
  46.       of extra system memory.  Decreasing this amount will mean
  47.       SquashFS uses less memory at the expense of extra reads from disk.
  48.  
  49.       Note there must be at least one cached fragment.  Anything
  50.       much more than three will probably not make much difference.
  51.  
  52. config SQUASHFS_VMALLOC
  53.     bool "Use Vmalloc rather than Kmalloc" if SQUASHFS_EMBEDDED
  54.     depends on SQUASHFS
  55.     default n
  56.     help
  57.       By default SquashFS uses kmalloc to obtain fragment cache memory.
  58.       Kmalloc memory is the standard kernel allocator, but it can fail
  59.       on memory constrained systems.  Because of the way Vmalloc works,
  60.       Vmalloc can succeed when kmalloc fails.  Specifying this option
  61.       will make SquashFS always use Vmalloc to allocate the
  62.       fragment cache memory.
  63.  
  64.       If unsure, say N.
  65.