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 | 13 +------------ fs/hugetlbfs/Kconfig | 12 ++++++++++++ 2 files changed, 13 insertions(+), 12 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-hugetlbfs fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-hugetlbfs +++ a/fs/Kconfig @@ -179,18 +179,7 @@ config TMPFS See for details. -config HUGETLBFS - bool "HugeTLB file system support" - depends X86 || IA64 || PPC64 || SPARC64 || SUPERH || BROKEN - help - hugetlbfs is a filesystem backing for HugeTLB pages, based on - ramfs. For architectures that support it, say Y here and read - for details. - - If unsure, say N. - -config HUGETLB_PAGE - def_bool HUGETLBFS +source "fs/hugetlbfs/Kconfig" config RAMFS bool diff -puN /dev/null fs/hugetlbfs/Kconfig --- /dev/null +++ a/fs/hugetlbfs/Kconfig @@ -0,0 +1,12 @@ +config HUGETLBFS + bool "HugeTLB file system support" + depends X86 || IA64 || PPC64 || SPARC64 || SUPERH || BROKEN + help + hugetlbfs is a filesystem backing for HugeTLB pages, based on + ramfs. For architectures that support it, say Y here and read + for details. + + If unsure, say N. + +config HUGETLB_PAGE + def_bool HUGETLBFS _