aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/Kconfig19
-rw-r--r--fs/romfs/Kconfig16
2 files changed, 17 insertions, 18 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index b348d2e8cc66..d8672ccdc69e 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -219,24 +219,7 @@ source "fs/minix/Kconfig"
219source "fs/omfs/Kconfig" 219source "fs/omfs/Kconfig"
220source "fs/hpfs/Kconfig" 220source "fs/hpfs/Kconfig"
221source "fs/qnx4/Kconfig" 221source "fs/qnx4/Kconfig"
222 222source "fs/romfs/Kconfig"
223config ROMFS_FS
224 tristate "ROM file system support"
225 depends on BLOCK
226 ---help---
227 This is a very small read-only file system mainly intended for
228 initial ram disks of installation disks, but it could be used for
229 other read-only media as well. Read
230 <file:Documentation/filesystems/romfs.txt> for details.
231
232 To compile this file system support as a module, choose M here: the
233 module will be called romfs. Note that the file system of your
234 root partition (the one containing the directory /) cannot be a
235 module.
236
237 If you don't know whether you need it, then you don't need it:
238 answer N.
239
240 223
241config SYSV_FS 224config SYSV_FS
242 tristate "System V/Xenix/V7/Coherent file system support" 225 tristate "System V/Xenix/V7/Coherent file system support"
diff --git a/fs/romfs/Kconfig b/fs/romfs/Kconfig
new file mode 100644
index 000000000000..1a17020f9faf
--- /dev/null
+++ b/fs/romfs/Kconfig
@@ -0,0 +1,16 @@
1config ROMFS_FS
2 tristate "ROM file system support"
3 depends on BLOCK
4 ---help---
5 This is a very small read-only file system mainly intended for
6 initial ram disks of installation disks, but it could be used for
7 other read-only media as well. Read
8 <file:Documentation/filesystems/romfs.txt> for details.
9
10 To compile this file system support as a module, choose M here: the
11 module will be called romfs. Note that the file system of your
12 root partition (the one containing the directory /) cannot be a
13 module.
14
15 If you don't know whether you need it, then you don't need it:
16 answer N.