diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-06-23 02:04:08 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 07:42:55 -0700 |
commit | 0c426f26cce71626ed39cd7b9496ea7f460ea9d0 (patch) | |
tree | dcff54163aaf2b5dc5b7e424622df3c5841587b5 /fs/Kconfig | |
parent | be2338f3ceb6d80170ebb495190d6aee79d8c7e3 (diff) | |
download | op-kernel-dev-0c426f26cce71626ed39cd7b9496ea7f460ea9d0.zip op-kernel-dev-0c426f26cce71626ed39cd7b9496ea7f460ea9d0.tar.gz |
[PATCH] ext2 XIP won't build without MMU
Disable Ext2 XIP if the kernel is configured in no-MMU mode as the former
won't build.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/Kconfig')
-rw-r--r-- | fs/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ config EXT2_FS_SECURITY config EXT2_FS_XIP bool "Ext2 execute in place support" - depends on EXT2_FS + depends on EXT2_FS && MMU help Execute in place can be used on memory-backed block devices. If you enable this option, you can select to mount block devices which are |