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.

This commit is contained in:
Xiang Xiao 2018-08-23 06:53:11 -06:00 committed by Gregory Nutt
parent 604885cbef
commit aef0978a12
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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.