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

choice
prompt "kernel filesystem interface"
depends on ADK_PACKAGE_DAVFS2

config ADK_PACKAGE_DAVFS2_FUSE
	bool "use the FUSE filesystem interface"
	select ADK_PACKAGE_FUSE_UTILS
config ADK_PACKAGE_DAVFS2_CODA
	bool "use the CODA filesystem interface"
	select ADK_KPACKAGE_KMOD_CODA_FS
config ADK_PACKAGE_DAVFS2_BOTH
	bool "use both filesystem interfaces"
	select ADK_PACKAGE_FUSE_UTILS
	select ADK_KPACKAGE_KMOD_CODA_FS
endchoice