Messages in this thread Patch in this message |  | | | Date | Fri, 29 Jul 2005 12:14:28 -0700 | | From | Greg KH <> | | Subject | [patch 04/29] DEBUG_FS must depend on SYSFS |
| |
From: Adrian Bunk <bunk@stusta.de>
CONFIG_DEBUG_FS=y and CONFIG_SYSFS=n results in the following compile error:
<-- snip -->
... LD vmlinux fs/built-in.o: In function `debugfs_init': inode.c:(.init.text+0x31be): undefined reference to `kernel_subsys' make: *** [vmlinux] Error 1
<-- snip -->
Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
--- lib/Kconfig.debug | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) --- gregkh-2.6.orig/lib/Kconfig.debug 2005-07-29 11:30:02.000000000 -0700 +++ gregkh-2.6/lib/Kconfig.debug 2005-07-29 11:33:58.000000000 -0700 @@ -141,7 +141,7 @@ config DEBUG_FS bool "Debug Filesystem" - depends on DEBUG_KERNEL + depends on DEBUG_KERNEL && SYSFS help debugfs is a virtual file system that kernel developers use to put debugging files into. Enable this option to be able to read and -- - 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/
|  |