Kconfig 1.2 KB

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