From 99593b6ed9c9aa091032b439a0e088a9e551956c Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 12 Aug 2017 11:36:19 -0600 Subject: [PATCH] apps/netutils/tftpc depends on CONFIG_NET_IPv4 --- netutils/tftpc/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netutils/tftpc/Kconfig b/netutils/tftpc/Kconfig index 770795d4b..59766f016 100644 --- a/netutils/tftpc/Kconfig +++ b/netutils/tftpc/Kconfig @@ -6,7 +6,7 @@ config NETUTILS_TFTPC bool "TFTP client" default n - depends on NET_UDP + depends on NET_UDP && NET_IPv4 ---help--- Enable support for the TFTP client.