diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-09-09 16:10:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 17:03:44 -0400 |
commit | 04578f174f43d29b569500f01ba772afa4016330 (patch) | |
tree | 36002fab91bc72132c88ac7969d5a38a66f90e14 /fs | |
parent | e272d50688a1cae66a12426da128483197843d9f (diff) |
[PATCH] FUSE - MAINTAINERS, Kconfig and Makefile changes
This patch adds FUSE filesystem to MAINTAINERS, fs/Kconfig and
fs/Makefile.
Signed-off-by: Miklos Szeredi <miklos@szeredi.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/Kconfig | 13 | ||||
-rw-r--r-- | fs/Makefile | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/fs/Kconfig b/fs/Kconfig index 443aed4e2067..068ccea2f184 100644 --- a/fs/Kconfig +++ b/fs/Kconfig | |||
@@ -462,6 +462,19 @@ config AUTOFS4_FS | |||
462 | local network, you probably do not need an automounter, and can say | 462 | local network, you probably do not need an automounter, and can say |
463 | N here. | 463 | N here. |
464 | 464 | ||
465 | config FUSE_FS | ||
466 | tristate "Filesystem in Userspace support" | ||
467 | help | ||
468 | With FUSE it is possible to implement a fully functional filesystem | ||
469 | in a userspace program. | ||
470 | |||
471 | There's also companion library: libfuse. This library along with | ||
472 | utilities is available from the FUSE homepage: | ||
473 | <http://fuse.sourceforge.net/> | ||
474 | |||
475 | If you want to develop a userspace FS, or if you want to use | ||
476 | a filesystem based on FUSE, answer Y or M. | ||
477 | |||
465 | menu "CD-ROM/DVD Filesystems" | 478 | menu "CD-ROM/DVD Filesystems" |
466 | 479 | ||
467 | config ISO9660_FS | 480 | config ISO9660_FS |
diff --git a/fs/Makefile b/fs/Makefile index d646502c1efb..1972da186272 100644 --- a/fs/Makefile +++ b/fs/Makefile | |||
@@ -89,6 +89,7 @@ obj-$(CONFIG_QNX4FS_FS) += qnx4/ | |||
89 | obj-$(CONFIG_AUTOFS_FS) += autofs/ | 89 | obj-$(CONFIG_AUTOFS_FS) += autofs/ |
90 | obj-$(CONFIG_AUTOFS4_FS) += autofs4/ | 90 | obj-$(CONFIG_AUTOFS4_FS) += autofs4/ |
91 | obj-$(CONFIG_ADFS_FS) += adfs/ | 91 | obj-$(CONFIG_ADFS_FS) += adfs/ |
92 | obj-$(CONFIG_FUSE_FS) += fuse/ | ||
92 | obj-$(CONFIG_UDF_FS) += udf/ | 93 | obj-$(CONFIG_UDF_FS) += udf/ |
93 | obj-$(CONFIG_RELAYFS_FS) += relayfs/ | 94 | obj-$(CONFIG_RELAYFS_FS) += relayfs/ |
94 | obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/ | 95 | obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/ |