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 | 20 +------------------- fs/cramfs/Kconfig | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 19 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-cramfs fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-cramfs +++ a/fs/Kconfig @@ -195,25 +195,7 @@ source "fs/bfs/Kconfig" source "fs/efs/Kconfig" source "fs/jffs/Kconfig" source "fs/jffs2/Kconfig" - -config CRAMFS - tristate "Compressed ROM file system support (cramfs)" - select ZLIB_INFLATE - help - Saying Y here includes support for CramFs (Compressed ROM File - System). CramFs is designed to be a simple, small, and compressed - file system for ROM based embedded systems. CramFs is read-only, - limited to 256MB file systems (with 16MB files), and doesn't support - 16/32 bits uid/gid, hard links and timestamps. - - See and - for further information. - - To compile this as a module, choose M here: the module will be called - cramfs. Note that the root file system (the one containing the - directory /) cannot be compiled as a module. - - If unsure, say N. +source "fs/cramfs/Kconfig" config VXFS_FS tristate "FreeVxFS file system support (VERITAS VxFS(TM) compatible)" diff -puN /dev/null fs/cramfs/Kconfig --- /dev/null +++ a/fs/cramfs/Kconfig @@ -0,0 +1,18 @@ +config CRAMFS + tristate "Compressed ROM file system support (cramfs)" + select ZLIB_INFLATE + help + Saying Y here includes support for CramFs (Compressed ROM File + System). CramFs is designed to be a simple, small, and compressed + file system for ROM based embedded systems. CramFs is read-only, + limited to 256MB file systems (with 16MB files), and doesn't support + 16/32 bits uid/gid, hard links and timestamps. + + See and + for further information. + + To compile this as a module, choose M here: the module will be called + cramfs. Note that the root file system (the one containing the + directory /) cannot be compiled as a module. + + If unsure, say N. _