2005-01-10 19:05:26

by Miklos Szeredi

[permalink] [raw]
Subject: [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes

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

Signed-off-by: Miklos Szeredi <[email protected]>
--- 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: [email protected]
W: http://sourceforge.net/projects/ftape
S: Orphan

+FUSE: FILESYSTEM IN USERSPACE
+P: Miklos Szeredi
+M: [email protected]
+L: [email protected]
+W: http://fuse.sourceforge.net/
+S: Maintained
+
FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
P: Rik Faith
M: [email protected]


2005-01-10 20:19:46

by Brice Goglin

[permalink] [raw]
Subject: Re: [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes

Miklos Szeredi a ?crit :
> This patch adds FUSE filesystem to MAINTAINERS, fs/Kconfig and
> fs/Makefile.
>
> Signed-off-by: Miklos Szeredi <[email protected]>
> --- 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

2005-01-10 20:48:51

by Miklos Szeredi

[permalink] [raw]
Subject: Re: [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes

> > 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

2005-01-10 20:40:14

by Brice Goglin

[permalink] [raw]
Subject: Re: [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes

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

2005-01-10 20:40:13

by Miklos Szeredi

[permalink] [raw]
Subject: Re: [PATCH 1/11] FUSE - MAINTAINERS, Kconfig and Makefile changes

> > +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