Kconfig 1.1 KB

123456789101112131415161718192021222324
  1. config OVERLAY_FS
  2. tristate "Overlay filesystem support"
  3. help
  4. An overlay filesystem combines two filesystems - an 'upper' filesystem
  5. and a 'lower' filesystem. When a name exists in both filesystems, the
  6. object in the 'upper' filesystem is visible while the object in the
  7. 'lower' filesystem is either hidden or, in the case of directories,
  8. merged with the 'upper' object.
  9. For more information see Documentation/filesystems/overlayfs.txt
  10. config OVERLAY_FS_REDIRECT_DIR
  11. bool "Overlayfs: turn on redirect dir feature by default"
  12. depends on OVERLAY_FS
  13. help
  14. If this config option is enabled then overlay filesystems will use
  15. redirects when renaming directories by default. In this case it is
  16. still possible to turn off redirects globally with the
  17. "redirect_dir=off" module option or on a filesystem instance basis
  18. with the "redirect_dir=off" mount option.
  19. Note, that redirects are not backward compatible. That is, mounting
  20. an overlay which has redirects on a kernel that doesn't support this
  21. feature will have unexpected results.