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: Mark Fasheh Cc: Joel Becker Signed-off-by: Andrew Morton --- fs/Kconfig | 14 +------------- fs/configfs/Kconfig | 11 +++++++++++ 2 files changed, 12 insertions(+), 13 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-configfs fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-configfs +++ a/fs/Kconfig @@ -181,19 +181,7 @@ config TMPFS source "fs/hugetlbfs/Kconfig" source "fs/ramfs/Kconfig" - -config CONFIGFS_FS - tristate "Userspace-driven configuration filesystem (EXPERIMENTAL)" - depends on SYSFS && EXPERIMENTAL - help - configfs is a ram-based filesystem that provides the converse - of sysfs's functionality. Where sysfs is a filesystem-based - view of kernel objects, configfs is a filesystem-based manager - of kernel objects, or config_items. - - Both sysfs and configfs can and should exist together on the - same system. One is not a replacement for the other. - +source "fs/configfs/Kconfig" endmenu menu "Miscellaneous filesystems" diff -puN /dev/null fs/configfs/Kconfig --- /dev/null +++ a/fs/configfs/Kconfig @@ -0,0 +1,11 @@ +config CONFIGFS_FS + tristate "Userspace-driven configuration filesystem (EXPERIMENTAL)" + depends on SYSFS && EXPERIMENTAL + help + configfs is a ram-based filesystem that provides the converse + of sysfs's functionality. Where sysfs is a filesystem-based + view of kernel objects, configfs is a filesystem-based manager + of kernel objects, or config_items. + + Both sysfs and configfs can and should exist together on the + same system. One is not a replacement for the other. _