From: Adrian Bunk Date: Tue, 19 Jul 2005 21:00:53 +0000 (-0700) Subject: [NET]: NETCONSOLE must depend on INET X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=23a534e7b1ad2650002bbc236493791ac23440ee;p=linux-beck.git [NET]: NETCONSOLE must depend on INET NETCONSOLE=y and INET=n results in the following compile error: net/built-in.o: In function `netpoll_parse_options': : undefined reference to `in_aton' net/built-in.o: In function `netpoll_parse_options': : undefined reference to `in_aton' Signed-off-by: Adrian Bunk Signed-off-by: David S. Miller --- diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index f827f0a1e1a6..534b598866b3 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -2544,7 +2544,7 @@ config SHAPER config NETCONSOLE tristate "Network console logging support (EXPERIMENTAL)" - depends on NETDEVICES && EXPERIMENTAL + depends on NETDEVICES && INET && EXPERIMENTAL ---help--- If you want to log kernel messages over the network, enable this. See for details.