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 Signed-off-by: Andrew Morton --- fs/Kconfig | 15 +-------------- fs/ramfs/Kconfig | 13 +++++++++++++ 2 files changed, 14 insertions(+), 14 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-ramfs fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-ramfs +++ a/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)" diff -puN /dev/null fs/ramfs/Kconfig --- /dev/null +++ a/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. _