From aef0978a120a7ab721a1333d7d491a42d4e82d12 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Thu, 23 Aug 2018 06:53:11 -0600 Subject: [PATCH] apps/system/ping and ping6: Change dependency in ping and ping6 Kconfig. These may be implemented in users sockets and, hence, may need to be avaiable even if ICMP and ICMPv6 sockets are not support. --- system/ping/Kconfig | 2 +- system/ping6/Kconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/system/ping/Kconfig b/system/ping/Kconfig index 254a64f04..0985479ad 100644 --- a/system/ping/Kconfig +++ b/system/ping/Kconfig @@ -6,7 +6,7 @@ config SYSTEM_PING bool "ICMP 'ping' command" default n - depends on NET_ICMP_SOCKET + depends on NET_ICMP_SOCKET || NET_USRSOCK ---help--- Enable support for the ICMP 'ping' command. diff --git a/system/ping6/Kconfig b/system/ping6/Kconfig index c6d50f6da..b096c50b3 100644 --- a/system/ping6/Kconfig +++ b/system/ping6/Kconfig @@ -6,7 +6,7 @@ config SYSTEM_PING6 bool "ICMPv6 'ping6' command" default n - depends on NET_ICMPv6_SOCKET + depends on NET_ICMPv6_SOCKET || NET_USRSOCK ---help--- Enable support for the ICMP 'ping' command.