Config.in 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config ADK_PACKAGE_DAVFS2
  2. prompt "davfs2............................ WebDAV filesystem"
  3. tristate
  4. default n
  5. select ADK_PACKAGE_LIBICONV
  6. select ADK_PACKAGE_NEON
  7. help
  8. WebDAV is an extension to HTTP that allows remote collaborative
  9. authoring of Web resources, defined in RFC 2518.
  10. davfs2 is a Linux file system driver that allows you to mount a
  11. WebDAV server as a local file system, like a disk drive. This
  12. way applications can access resources on a Web server without
  13. knowing anything about HTTP or WebDAV.
  14. davfs2 runs as a daemon in userspace. It uses the kernel file
  15. system coda or fuse. To connect to the WebDAV
  16. server it makes use of the neon library. Neon supports TLS/SSL
  17. (using OpenSSL or GnuTLS) and access via proxy server.
  18. davfs2 allows you to e.g.
  19. * use a WebDAV server as workspace for a geographically
  20. distributed work group.
  21. * save documents on a WebDAV server and access and edit them
  22. via internet from wherever you want.
  23. * edit a web site in place, using your preferred development
  24. tools.
  25. choice
  26. prompt "kernel filesystem interface"
  27. depends on ADK_PACKAGE_DAVFS2
  28. config ADK_PACKAGE_DAVFS2_FUSE
  29. bool "use the FUSE filesystem interface"
  30. select ADK_PACKAGE_FUSE_UTILS
  31. config ADK_PACKAGE_DAVFS2_CODA
  32. bool "use the CODA filesystem interface"
  33. select ADK_KPACKAGE_KMOD_CODA_FS
  34. config ADK_PACKAGE_DAVFS2_BOTH
  35. bool "use both filesystem interfaces"
  36. select ADK_PACKAGE_FUSE_UTILS
  37. select ADK_KPACKAGE_KMOD_CODA_FS
  38. endchoice