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 | 28 +--------------------------- fs/qnx4/Kconfig | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 27 deletions(-) diff -puN fs/Kconfig~fs-kconfig-split-qnx4 fs/Kconfig --- a/fs/Kconfig~fs-kconfig-split-qnx4 +++ a/fs/Kconfig @@ -198,33 +198,7 @@ source "fs/jffs2/Kconfig" source "fs/cramfs/Kconfig" source "fs/freevxfs/Kconfig" source "fs/hpfs/Kconfig" - -config QNX4FS_FS - tristate "QNX4 file system support (read only)" - help - This is the file system used by the real-time operating systems - QNX 4 and QNX 6 (the latter is also called QNX RTP). - Further information is available at . - Say Y if you intend to mount QNX hard disks or floppies. - Unless you say Y to "QNX4FS read-write support" below, you will - only be able to read these file systems. - - To compile this file system support as a module, choose M here: the - module will be called qnx4. - - If you don't know whether you need it, then you don't need it: - answer N. - -config QNX4FS_RW - bool "QNX4FS write support (DANGEROUS)" - depends on QNX4FS_FS && EXPERIMENTAL && BROKEN - help - Say Y if you want to test write support for QNX4 file systems. - - It's currently broken, so for now: - answer N. - - +source "fs/qnx4/Kconfig" config SYSV_FS tristate "System V/Xenix/V7/Coherent file system support" diff -puN /dev/null fs/qnx4/Kconfig --- /dev/null +++ a/fs/qnx4/Kconfig @@ -0,0 +1,24 @@ +config QNX4FS_FS + tristate "QNX4 file system support (read only)" + help + This is the file system used by the real-time operating systems + QNX 4 and QNX 6 (the latter is also called QNX RTP). + Further information is available at . + Say Y if you intend to mount QNX hard disks or floppies. + Unless you say Y to "QNX4FS read-write support" below, you will + only be able to read these file systems. + + To compile this file system support as a module, choose M here: the + module will be called qnx4. + + If you don't know whether you need it, then you don't need it: + answer N. + +config QNX4FS_RW + bool "QNX4FS write support (DANGEROUS)" + depends on QNX4FS_FS && EXPERIMENTAL && BROKEN + help + Say Y if you want to test write support for QNX4 file systems. + + It's currently broken, so for now: + answer N. _