Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 142321
b: refs/heads/master
c: f52fd5b
h: refs/heads/master
i:
  142319: b2e3a83
v: v3
  • Loading branch information
David Howells authored and David Woodhouse committed Mar 24, 2009
1 parent 6f3eb07 commit 5a098a2
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: da4458bda237aa0cb1688f6c359477f203788f6a
refs/heads/master: f52fd5b7fd11e85fe9de15d5c5b5d574f9ff4cab
34 changes: 28 additions & 6 deletions trunk/fs/romfs/Kconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
config ROMFS_FS
tristate "ROM file system support"
depends on BLOCK
depends on BLOCK || MTD
---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
Expand All @@ -15,19 +15,28 @@ config ROMFS_FS
If you don't know whether you need it, then you don't need it:
answer N.

config ROMFS_ON_BLOCK
bool "Block device-backed ROM file system support" if (ROMFS_ON_MTD && EMBEDDED)
depends on ROMFS_FS && BLOCK
#
# 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
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.

config ROMFS_ON_MTD
config ROMFS_BACKED_BY_MTD
bool "MTD-backed ROM file system support"
depends on ROMFS_FS
depends on MTD=y || (ROMFS_FS=m && MTD)
help
This permits ROMFS to use MTD based devices directly, without the
Expand All @@ -38,3 +47,16 @@ config ROMFS_ON_MTD

If unsure, answer Y.

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

0 comments on commit 5a098a2

Please sign in to comment.