linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes
@ 2005-01-10 18:56 Miklos Szeredi
  2005-01-10 20:15 ` Brice Goglin
  0 siblings, 1 reply; 6+ messages in thread
From: Miklos Szeredi @ 2005-01-10 18:56 UTC (permalink / raw)
  To: akpm, torvalds; +Cc: linux-fsdevel, linux-kernel

This patch adds FUSE filesystem to MAINTAINERS, fs/Kconfig and
fs/Makefile.

Signed-off-by: Miklos Szeredi <miklos@szeredi.hu>
--- a/fs/Kconfig	2004-11-20 21:14:44.000000000 +0100
+++ b/fs/Kconfig	2004-11-20 12:50:30.000000000 +0100
@@ -492,6 +492,19 @@ config AUTOFS4_FS
 	  local network, you probably do not need an automounter, and can say
 	  N here.
 
+config FUSE
+	tristate "Filesystem in Userspace support"
+	help
+	  With FUSE it is possible to implement a fully functional filesystem
+	  in a userspace program.  
+
+	  There's also companion library: libfuse.  This library along with
+	  utilities is available from the FUSE homepage:
+	  <http://fuse.sourceforge.net/>
+
+	  If you want to develop a userspace FS, or if you want to use
+	  a filesystem based on FUSE, answer Y or M.
+
 menu "CD-ROM/DVD Filesystems"
 
 config ISO9660_FS
--- a/fs/Makefile	2004-11-20 21:14:51.000000000 +0100
+++ b/fs/Makefile	2004-11-20 13:41:14.000000000 +0100
@@ -94,3 +94,4 @@ obj-$(CONFIG_AFS_FS)		+= afs/
 obj-$(CONFIG_BEFS_FS)		+= befs/
 obj-$(CONFIG_HOSTFS)		+= hostfs/
 obj-$(CONFIG_HPPFS)		+= hppfs/
+obj-$(CONFIG_FUSE)		+= fuse/
--- a/MAINTAINERS	2004-11-20 21:14:30.000000000 +0100
+++ b/MAINTAINERS	2004-11-17 10:15:45.000000000 +0100
@@ -867,6 +867,13 @@ L:	linux-tape@vger.kernel.org
 W:	http://sourceforge.net/projects/ftape
 S:	Orphan
 
+FUSE: FILESYSTEM IN USERSPACE
+P:	Miklos Szeredi
+M:	miklos@szeredi.hu
+L:	fuse-devel@lists.sourceforge.net
+W:	http://fuse.sourceforge.net/
+S:	Maintained
+
 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
 P:	Rik Faith
 M:	faith@cs.unc.edu

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes
  2005-01-10 18:56 [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes Miklos Szeredi
@ 2005-01-10 20:15 ` Brice Goglin
  2005-01-10 20:32   ` Miklos Szeredi
  0 siblings, 1 reply; 6+ messages in thread
From: Brice Goglin @ 2005-01-10 20:15 UTC (permalink / raw)
  To: Miklos Szeredi; +Cc: akpm, torvalds, linux-fsdevel, linux-kernel

Miklos Szeredi a écrit :
> This patch adds FUSE filesystem to MAINTAINERS, fs/Kconfig and
> fs/Makefile.
> 
> Signed-off-by: Miklos Szeredi <miklos@szeredi.hu>
> --- a/fs/Kconfig	2004-11-20 21:14:44.000000000 +0100
> +++ b/fs/Kconfig	2004-11-20 12:50:30.000000000 +0100
> @@ -492,6 +492,19 @@ config AUTOFS4_FS
>  	  local network, you probably do not need an automounter, and can say
>  	  N here.
>  
> +config FUSE
> +	tristate "Filesystem in Userspace support"

 From what I see in my .config, most file systems have their config option
named CONFIG_FOO_FS. Why wouldn't FUSE follow this model ?

Regards,
Brice

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes
  2005-01-10 20:15 ` Brice Goglin
@ 2005-01-10 20:32   ` Miklos Szeredi
  2005-01-10 20:34     ` Brice Goglin
  0 siblings, 1 reply; 6+ messages in thread
From: Miklos Szeredi @ 2005-01-10 20:32 UTC (permalink / raw)
  To: Brice.Goglin; +Cc: akpm, torvalds, linux-fsdevel, linux-kernel

> > +config FUSE
> > +	tristate "Filesystem in Userspace support"
> 
>  From what I see in my .config, most file systems have their config option
> named CONFIG_FOO_FS. Why wouldn't FUSE follow this model ?

It does.  CONFIG_ is prepended by make config.

Miklos

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes
  2005-01-10 20:32   ` Miklos Szeredi
@ 2005-01-10 20:34     ` Brice Goglin
  2005-01-10 20:43       ` Miklos Szeredi
  0 siblings, 1 reply; 6+ messages in thread
From: Brice Goglin @ 2005-01-10 20:34 UTC (permalink / raw)
  To: Miklos Szeredi; +Cc: Brice.Goglin, akpm, torvalds, linux-fsdevel, linux-kernel

Miklos Szeredi a écrit :
>>>+config FUSE
>>>+	tristate "Filesystem in Userspace support"
>>
>> From what I see in my .config, most file systems have their config option
>>named CONFIG_FOO_FS. Why wouldn't FUSE follow this model ?
> 
> 
> It does.  CONFIG_ is prepended by make config.
> 
> Miklos

Yes, but _FS is not appended :) That was my concern.

Brice

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes
  2005-01-10 20:34     ` Brice Goglin
@ 2005-01-10 20:43       ` Miklos Szeredi
  0 siblings, 0 replies; 6+ messages in thread
From: Miklos Szeredi @ 2005-01-10 20:43 UTC (permalink / raw)
  To: Brice.Goglin; +Cc: akpm, torvalds, linux-fsdevel, linux-kernel

> > It does.  CONFIG_ is prepended by make config.
> > 
> > Miklos
> 
> Yes, but _FS is not appended :) That was my concern.

Oh, in that case your comment is justified :)

Thanks,
Miklos

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes
@ 2005-01-11 16:24 Miklos Szeredi
  0 siblings, 0 replies; 6+ messages in thread
From: Miklos Szeredi @ 2005-01-11 16:24 UTC (permalink / raw)
  To: akpm, torvalds; +Cc: linux-fsdevel, linux-kernel

This patch adds FUSE filesystem to MAINTAINERS, fs/Kconfig and
fs/Makefile.

Signed-off-by: Miklos Szeredi <miklos@szeredi.hu>
--- a/fs/Kconfig	2004-11-20 21:14:44.000000000 +0100
+++ b/fs/Kconfig	2004-11-20 12:50:30.000000000 +0100
@@ -492,6 +492,19 @@ config AUTOFS4_FS
 	  local network, you probably do not need an automounter, and can say
 	  N here.
 
+config FUSE_FS
+	tristate "Filesystem in Userspace support"
+	help
+	  With FUSE it is possible to implement a fully functional filesystem
+	  in a userspace program.  
+
+	  There's also companion library: libfuse.  This library along with
+	  utilities is available from the FUSE homepage:
+	  <http://fuse.sourceforge.net/>
+
+	  If you want to develop a userspace FS, or if you want to use
+	  a filesystem based on FUSE, answer Y or M.
+
 menu "CD-ROM/DVD Filesystems"
 
 config ISO9660_FS
--- a/fs/Makefile	2004-11-20 21:14:51.000000000 +0100
+++ b/fs/Makefile	2004-11-20 13:41:14.000000000 +0100
@@ -94,3 +94,4 @@ obj-$(CONFIG_AFS_FS)		+= afs/
 obj-$(CONFIG_BEFS_FS)		+= befs/
 obj-$(CONFIG_HOSTFS)		+= hostfs/
 obj-$(CONFIG_HPPFS)		+= hppfs/
+obj-$(CONFIG_FUSE_FS)		+= fuse/
--- a/MAINTAINERS	2004-11-20 21:14:30.000000000 +0100
+++ b/MAINTAINERS	2004-11-17 10:15:45.000000000 +0100
@@ -867,6 +867,13 @@ L:	linux-tape@vger.kernel.org
 W:	http://sourceforge.net/projects/ftape
 S:	Orphan
 
+FUSE: FILESYSTEM IN USERSPACE
+P:	Miklos Szeredi
+M:	miklos@szeredi.hu
+L:	fuse-devel@lists.sourceforge.net
+W:	http://fuse.sourceforge.net/
+S:	Maintained
+
 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
 P:	Rik Faith
 M:	faith@cs.unc.edu

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-01-11 16:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-10 18:56 [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes Miklos Szeredi
2005-01-10 20:15 ` Brice Goglin
2005-01-10 20:32   ` Miklos Szeredi
2005-01-10 20:34     ` Brice Goglin
2005-01-10 20:43       ` Miklos Szeredi
2005-01-11 16:24 Miklos Szeredi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).