Kconfig 1.1 KB

123456789101112131415161718192021222324
  1. config NILFS2_FS
  2. tristate "NILFS2 file system support"
  3. select CRC32
  4. help
  5. NILFS2 is a log-structured file system (LFS) supporting continuous
  6. snapshotting. In addition to versioning capability of the entire
  7. file system, users can even restore files mistakenly overwritten or
  8. destroyed just a few seconds ago. Since this file system can keep
  9. consistency like conventional LFS, it achieves quick recovery after
  10. system crashes.
  11. NILFS2 creates a number of checkpoints every few seconds or per
  12. synchronous write basis (unless there is no change). Users can
  13. select significant versions among continuously created checkpoints,
  14. and can change them into snapshots which will be preserved for long
  15. periods until they are changed back to checkpoints. Each
  16. snapshot is mountable as a read-only file system concurrently with
  17. its writable mount, and this feature is convenient for online backup.
  18. Some features including atime, extended attributes, and POSIX ACLs,
  19. are not supported yet.
  20. To compile this file system support as a module, choose M here: the
  21. module will be called nilfs2. If unsure, say N.