[PATCH -mm 21/44] fs/Kconfig split: ramfs Signed-off-by: Alexey Dobriyan --- fs/Kconfig | 15 +-------------- fs/ramfs/Kconfig | 13 +++++++++++++ 2 files changed, 14 insertions(+), 14 deletions(-) --- a/fs/Kconfig +++ b/fs/Kconfig @@ -180,20 +180,7 @@ config TMPFS See for details. source "fs/hugetlbfs/Kconfig" - -config RAMFS - bool - default y - ---help--- - Ramfs is a file system which keeps all files in RAM. It allows - read and write access. - - It is more of an programming example than a useable file system. If - you need a file system which lives in RAM with limit checking use - tmpfs. - - To compile this as a module, choose M here: the module will be called - ramfs. +source "fs/ramfs/Kconfig" config CONFIGFS_FS tristate "Userspace-driven configuration filesystem (EXPERIMENTAL)" --- /dev/null +++ b/fs/ramfs/Kconfig @@ -0,0 +1,13 @@ +config RAMFS + bool + default y + ---help--- + Ramfs is a file system which keeps all files in RAM. It allows + read and write access. + + It is more of an programming example than a useable file system. If + you need a file system which lives in RAM with limit checking use + tmpfs. + + To compile this as a module, choose M here: the module will be called + ramfs.