Kconfig 956 B

123456789101112131415161718192021222324252627
  1. config FUSE_FS
  2. tristate "FUSE (Filesystem in Userspace) support"
  3. help
  4. With FUSE it is possible to implement a fully functional filesystem
  5. in a userspace program.
  6. There's also a companion library: libfuse2. This library is available
  7. from the FUSE homepage:
  8. <http://fuse.sourceforge.net/>
  9. although chances are your distribution already has that library
  10. installed if you've installed the "fuse" package itself.
  11. See <file:Documentation/filesystems/fuse.txt> for more information.
  12. See <file:Documentation/Changes> for needed library/utility version.
  13. If you want to develop a userspace FS, or if you want to use
  14. a filesystem based on FUSE, answer Y or M.
  15. config CUSE
  16. tristate "Character device in Userspace support"
  17. depends on FUSE_FS
  18. help
  19. This FUSE extension allows character devices to be
  20. implemented in userspace.
  21. If you want to develop or use a userspace character device
  22. based on CUSE, answer Y or M.