From: Alexey Dobriyan Part of a 44-patch series to split fs/Kconfig into many fs//Kconfig files. Not realy suitable for applying to subsystem git trees (please). Signed-off-by: Alexey Dobriyan Cc: Miklos Szeredi Signed-off-by: Andrew Morton --- fs/Kconfig | 17 +---------------- fs/fuse/Kconfig | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 16 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-fuse fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-fuse +++ a/fs/Kconfig @@ -114,22 +114,7 @@ config DNOTIFY source "fs/autofs/Kconfig" source "fs/autofs4/Kconfig" - -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: - - - See for more information. - See for needed library/utility version. - - If you want to develop a userspace FS, or if you want to use - a filesystem based on FUSE, answer Y or M. +source "fs/fuse/Kconfig" menu "Caches" diff -puN /dev/null fs/fuse/Kconfig --- /dev/null +++ a/fs/fuse/Kconfig @@ -0,0 +1,15 @@ +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: + + + See for more information. + See for needed library/utility version. + + If you want to develop a userspace FS, or if you want to use + a filesystem based on FUSE, answer Y or M. _