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: David Woodhouse Signed-off-by: Andrew Morton --- fs/Kconfig | 24 +----------------------- fs/jffs/Kconfig | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 23 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-jffs fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-jffs +++ a/fs/Kconfig @@ -193,29 +193,7 @@ source "fs/hfsplus/Kconfig" source "fs/befs/Kconfig" source "fs/bfs/Kconfig" source "fs/efs/Kconfig" - -config JFFS_FS - tristate "Journalling Flash File System (JFFS) support" - depends on MTD - help - JFFS is the Journaling Flash File System developed by Axis - Communications in Sweden, aimed at providing a crash/powerdown-safe - file system for disk-less embedded devices. Further information is - available at (). - -config JFFS_FS_VERBOSE - int "JFFS debugging verbosity (0 = quiet, 3 = noisy)" - depends on JFFS_FS - default "0" - help - Determines the verbosity level of the JFFS debugging messages. - -config JFFS_PROC_FS - bool "JFFS stats available in /proc filesystem" - depends on JFFS_FS && PROC_FS - help - Enabling this option will cause statistics from mounted JFFS file systems - to be made available to the user in the /proc/fs/jffs/ directory. +source "fs/jffs/Kconfig" config JFFS2_FS tristate "Journalling Flash File System v2 (JFFS2) support" diff -puN /dev/null fs/jffs/Kconfig --- /dev/null +++ a/fs/jffs/Kconfig @@ -0,0 +1,22 @@ +config JFFS_FS + tristate "Journalling Flash File System (JFFS) support" + depends on MTD + help + JFFS is the Journaling Flash File System developed by Axis + Communications in Sweden, aimed at providing a crash/powerdown-safe + file system for disk-less embedded devices. Further information is + available at (). + +config JFFS_FS_VERBOSE + int "JFFS debugging verbosity (0 = quiet, 3 = noisy)" + depends on JFFS_FS + default "0" + help + Determines the verbosity level of the JFFS debugging messages. + +config JFFS_PROC_FS + bool "JFFS stats available in /proc filesystem" + depends on JFFS_FS && PROC_FS + help + Enabling this option will cause statistics from mounted JFFS file systems + to be made available to the user in the /proc/fs/jffs/ directory. _