Messages in this thread Patch in this message |  | | | Date | Sun, 26 Mar 2006 14:25:52 +0200 | | From | Adrian Bunk <> | | Subject | [2.6 patch] CONFIGFS_FS must depend on SYSFS |
| |
This patch fixes the following compile error with CONFIG_SYSFS=n:
<-- snip -->
... LD .tmp_vmlinux1 fs/built-in.o: In function `configfs_init':mount.c:(.init.text+0x3d5d): undefined reference to `kernel_subsys' make: *** [.tmp_vmlinux1] Error 1
<-- snip -->
Signed-off-by: Adrian Bunk <bunk@stusta.de>
--- fs/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-2.6.16-mm1-full/fs/Kconfig.old 2006-03-26 03:02:17.000000000 +0200 +++ linux-2.6.16-mm1-full/fs/Kconfig 2006-03-26 03:02:34.000000000 +0200 @@ -328,7 +328,7 @@ config OCFS2_FS tristate "OCFS2 file system support (EXPERIMENTAL)" - depends on NET && EXPERIMENTAL + depends on NET && SYSFS && EXPERIMENTAL select CONFIGFS_FS select JBD select CRC32 @@ -863,7 +863,7 @@ config CONFIGFS_FS tristate "Userspace-driven configuration filesystem (EXPERIMENTAL)" - depends on EXPERIMENTAL + depends on SYSFS && EXPERIMENTAL help configfs is a ram-based filesystem that provides the converse of sysfs's functionality. Where sysfs is a filesystem-based - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |