Kconfig 1.2 KB

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