Kconfig 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. config CRAMFS
  2. tristate "Compressed ROM file system support (cramfs)"
  3. select ZLIB_INFLATE
  4. help
  5. Saying Y here includes support for CramFs (Compressed ROM File
  6. System). CramFs is designed to be a simple, small, and compressed
  7. file system for ROM based embedded systems. CramFs is read-only,
  8. limited to 256MB file systems (with 16MB files), and doesn't support
  9. 16/32 bits uid/gid, hard links and timestamps.
  10. See <file:Documentation/filesystems/cramfs.txt> and
  11. <file:fs/cramfs/README> for further information.
  12. To compile this as a module, choose M here: the module will be called
  13. cramfs. Note that the root file system (the one containing the
  14. directory /) cannot be compiled as a module.
  15. This filesystem is limited in capabilities and performance on
  16. purpose to remain small and low on RAM usage. It is most suitable
  17. for small embedded systems. If you have ample RAM to spare, you may
  18. consider a more capable compressed filesystem such as SquashFS
  19. which is much better in terms of performance and features.
  20. If unsure, say N.
  21. config CRAMFS_BLOCKDEV
  22. bool "Support CramFs image over a regular block device" if EXPERT
  23. depends on CRAMFS && BLOCK
  24. default y
  25. help
  26. This option allows the CramFs driver to load data from a regular
  27. block device such a disk partition or a ramdisk.
  28. config CRAMFS_MTD
  29. bool "Support CramFs image directly mapped in physical memory"
  30. depends on CRAMFS && CRAMFS <= MTD
  31. default y if !CRAMFS_BLOCKDEV
  32. help
  33. This option allows the CramFs driver to load data directly from
  34. a linear adressed memory range (usually non volatile memory
  35. like flash) instead of going through the block device layer.
  36. This saves some memory since no intermediate buffering is
  37. necessary.
  38. The location of the CramFs image is determined by a
  39. MTD device capable of direct memory mapping e.g. from
  40. the 'physmap' map driver or a resulting MTD partition.
  41. For example, this would mount the cramfs image stored in
  42. the MTD partition named "xip_fs" on the /mnt mountpoint:
  43. mount -t cramfs mtd:xip_fs /mnt
  44. If unsure, say N.