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: OGAWA Hirofumi Signed-off-by: Andrew Morton --- fs/Kconfig | 19 +------------------ fs/vfat/Kconfig | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 18 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-vfat fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-vfat +++ a/fs/Kconfig @@ -158,24 +158,7 @@ endmenu menu "DOS/FAT/NT Filesystems" source "fs/msdos/Kconfig" - -config VFAT_FS - tristate "VFAT (Windows-95) fs support" - select FAT_FS - help - This option provides support for normal Windows file systems with - long filenames. That includes non-compressed FAT-based file systems - used by Windows 95, Windows 98, Windows NT 4.0, and the Unix - programs from the mtools package. - - The VFAT support enlarges your kernel by about 10 KB and it only - works if you said Y to the "DOS FAT fs support" above. Please read - the file for details. If - unsure, say Y. - - To compile this as a module, choose M here: the module will be called - vfat. - +source "fs/vfat/Kconfig" source "fs/fat/Kconfig" config NTFS_FS diff -puN /dev/null fs/vfat/Kconfig --- /dev/null +++ a/fs/vfat/Kconfig @@ -0,0 +1,16 @@ +config VFAT_FS + tristate "VFAT (Windows-95) fs support" + select FAT_FS + help + This option provides support for normal Windows file systems with + long filenames. That includes non-compressed FAT-based file systems + used by Windows 95, Windows 98, Windows NT 4.0, and the Unix + programs from the mtools package. + + The VFAT support enlarges your kernel by about 10 KB and it only + works if you said Y to the "DOS FAT fs support" above. Please read + the file for details. If + unsure, say Y. + + To compile this as a module, choose M here: the module will be called + vfat. _