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 | 17 +---------------- fs/romfs/Kconfig | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 16 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-romfs fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-romfs +++ a/fs/Kconfig @@ -38,22 +38,7 @@ source "fs/xfs/Kconfig" source "fs/gfs2/Kconfig" source "fs/ocfs2/Kconfig" source "fs/minix/Kconfig" - -config ROMFS_FS - tristate "ROM file system support" - ---help--- - This is a very small read-only file system mainly intended for - initial ram disks of installation disks, but it could be used for - other read-only media as well. Read - for details. - - To compile this file system support as a module, choose M here: the - module will be called romfs. Note that the file system of your - root partition (the one containing the directory /) cannot be a - module. - - If you don't know whether you need it, then you don't need it: - answer N. +source "fs/romfs/Kconfig" config INOTIFY bool "Inotify file change notification support" diff -puN /dev/null fs/romfs/Kconfig --- /dev/null +++ a/fs/romfs/Kconfig @@ -0,0 +1,15 @@ +config ROMFS_FS + tristate "ROM file system support" + ---help--- + This is a very small read-only file system mainly intended for + initial ram disks of installation disks, but it could be used for + other read-only media as well. Read + for details. + + To compile this file system support as a module, choose M here: the + module will be called romfs. Note that the file system of your + root partition (the one containing the directory /) cannot be a + module. + + If you don't know whether you need it, then you don't need it: + answer N. _