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: Roman Zippel Signed-off-by: Andrew Morton --- fs/Kconfig | 14 +------------- fs/hfs/Kconfig | 12 ++++++++++++ 2 files changed, 13 insertions(+), 13 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-hfs fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-hfs +++ a/fs/Kconfig @@ -188,19 +188,7 @@ menu "Miscellaneous filesystems" source "fs/adfs/Kconfig" source "fs/affs/Kconfig" source "fs/ecryptfs/Kconfig" - -config HFS_FS - tristate "Apple Macintosh file system support (EXPERIMENTAL)" - depends on EXPERIMENTAL - select NLS - help - If you say Y here, you will be able to mount Macintosh-formatted - floppy disks and hard drive partitions with full read-write access. - Please read to learn about the available mount - options. - - To compile this file system support as a module, choose M here: the - module will be called hfs. +source "fs/hfs/Kconfig" config HFSPLUS_FS tristate "Apple Extended HFS file system support" diff -puN /dev/null fs/hfs/Kconfig --- /dev/null +++ a/fs/hfs/Kconfig @@ -0,0 +1,12 @@ +config HFS_FS + tristate "Apple Macintosh file system support (EXPERIMENTAL)" + depends on EXPERIMENTAL + select NLS + help + If you say Y here, you will be able to mount Macintosh-formatted + floppy disks and hard drive partitions with full read-write access. + Please read to learn about the available mount + options. + + To compile this file system support as a module, choose M here: the + module will be called hfs. _