This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new b56795e1e net/ping: utils ping should depends on ipv4
b56795e1e is described below
commit b56795e1e25dad8426202ad916c68220df7ca24e
Author: gaohedong <[email protected]>
AuthorDate: Wed Sep 24 23:44:33 2025 +0800
net/ping: utils ping should depends on ipv4
utils ping should depends on ipv4
Signed-off-by: gaohedong <[email protected]>
---
system/ping/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/system/ping/Kconfig b/system/ping/Kconfig
index 7559ac2e9..7500f1024 100644
--- a/system/ping/Kconfig
+++ b/system/ping/Kconfig
@@ -6,6 +6,7 @@
config SYSTEM_PING
tristate "ICMP 'ping' command"
default n
+ depends on NET_IPv4
select NETUTILS_PING
---help---
Enable support for the ICMP 'ping' command.