Blame view
fs/romfs/Kconfig
1.8 KB
41810246d fs/Kconfig: move ... |
1 2 |
config ROMFS_FS tristate "ROM file system support" |
f52fd5b7f NOMMU: Fix the Ro... |
3 |
depends on BLOCK || MTD |
41810246d fs/Kconfig: move ... |
4 5 6 7 8 9 10 11 12 13 14 15 16 |
---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 <file:Documentation/filesystems/romfs.txt> 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. |
da4458bda NOMMU: Make it po... |
17 |
|
f52fd5b7f NOMMU: Fix the Ro... |
18 19 20 21 22 23 24 25 26 27 28 29 30 |
# # Select the backing stores to be supported # choice prompt "RomFS backing stores" depends on ROMFS_FS default ROMFS_BACKED_BY_BLOCK help Select the backing stores to be supported. config ROMFS_BACKED_BY_BLOCK bool "Block device-backed ROM file system support" depends on BLOCK |
da4458bda NOMMU: Make it po... |
31 32 33 34 35 36 |
help This permits ROMFS to use block devices buffered through the page cache as the medium from which to retrieve data. It does not allow direct mapping of the medium. If unsure, answer Y. |
f52fd5b7f NOMMU: Fix the Ro... |
37 |
config ROMFS_BACKED_BY_MTD |
da4458bda NOMMU: Make it po... |
38 |
bool "MTD-backed ROM file system support" |
da4458bda NOMMU: Make it po... |
39 40 41 42 43 44 45 46 47 |
depends on MTD=y || (ROMFS_FS=m && MTD) help This permits ROMFS to use MTD based devices directly, without the intercession of the block layer (which may have been disabled). It also allows direct mapping of MTD devices through romfs files under NOMMU conditions if the underlying device is directly addressable by the CPU. If unsure, answer Y. |
f52fd5b7f NOMMU: Fix the Ro... |
48 49 50 51 52 53 54 55 56 57 58 59 60 |
config ROMFS_BACKED_BY_BOTH bool "Both the above" depends on BLOCK && (MTD=y || (ROMFS_FS=m && MTD)) endchoice config ROMFS_ON_BLOCK bool default y if ROMFS_BACKED_BY_BLOCK || ROMFS_BACKED_BY_BOTH config ROMFS_ON_MTD bool default y if ROMFS_BACKED_BY_MTD || ROMFS_BACKED_BY_BOTH |