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/hfsplus/Kconfig | 12 ++++++++++++ 2 files changed, 13 insertions(+), 13 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-hfsplus fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-hfsplus +++ a/fs/Kconfig @@ -189,19 +189,7 @@ source "fs/adfs/Kconfig" source "fs/affs/Kconfig" source "fs/ecryptfs/Kconfig" source "fs/hfs/Kconfig" - -config HFSPLUS_FS - tristate "Apple Extended HFS file system support" - select NLS - select NLS_UTF8 - help - If you say Y here, you will be able to mount extended format - Macintosh-formatted hard drive partitions with full read-write access. - - This file system is often called HFS+ and was introduced with - MacOS 8. It includes all Mac specific filesystem data such as - data forks and creator codes, but it also has several UNIX - style features such as file ownership and permissions. +source "fs/hfsplus/Kconfig" config BEFS_FS tristate "BeOS file system (BeFS) support (read only) (EXPERIMENTAL)" diff -puN /dev/null fs/hfsplus/Kconfig --- /dev/null +++ a/fs/hfsplus/Kconfig @@ -0,0 +1,12 @@ +config HFSPLUS_FS + tristate "Apple Extended HFS file system support" + select NLS + select NLS_UTF8 + help + If you say Y here, you will be able to mount extended format + Macintosh-formatted hard drive partitions with full read-write access. + + This file system is often called HFS+ and was introduced with + MacOS 8. It includes all Mac specific filesystem data such as + data forks and creator codes, but it also has several UNIX + style features such as file ownership and permissions. _