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/udf/Kconfig | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 19 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-udf fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-udf +++ a/fs/Kconfig @@ -153,25 +153,7 @@ endmenu menu "CD-ROM/DVD Filesystems" source "fs/isofs/Kconfig" - -config UDF_FS - tristate "UDF file system support" - help - This is the new file system used on some CD-ROMs and DVDs. Say Y if - you intend to mount DVD discs or CDRW's written in packet mode, or - if written to by other UDF utilities, such as DirectCD. - Please read . - - To compile this file system support as a module, choose M here: the - module will be called udf. - - If unsure, say N. - -config UDF_NLS - bool - default y - depends on (UDF_FS=m && NLS) || (UDF_FS=y && NLS=y) - +source "fs/udf/Kconfig" endmenu menu "DOS/FAT/NT Filesystems" diff -puN /dev/null fs/udf/Kconfig --- /dev/null +++ a/fs/udf/Kconfig @@ -0,0 +1,17 @@ +config UDF_FS + tristate "UDF file system support" + help + This is the new file system used on some CD-ROMs and DVDs. Say Y if + you intend to mount DVD discs or CDRW's written in packet mode, or + if written to by other UDF utilities, such as DirectCD. + Please read . + + To compile this file system support as a module, choose M here: the + module will be called udf. + + If unsure, say N. + +config UDF_NLS + bool + default y + depends on (UDF_FS=m && NLS) || (UDF_FS=y && NLS=y) _