From ce1c945136e7067e217837b186d1ae36daa35c87 Mon Sep 17 00:00:00 2001 From: chao an Date: Mon, 21 Nov 2022 11:22:54 +0800 Subject: [PATCH] net/arp: Make NET_ARP(Address Resolution Protocol) configurable Some boards that use USRSOCK will not need this feature Signed-off-by: chao an --- net/arp/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/arp/Kconfig b/net/arp/Kconfig index 540e4b0c87..dd5e5ea7e0 100644 --- a/net/arp/Kconfig +++ b/net/arp/Kconfig @@ -6,7 +6,7 @@ menu "ARP Configuration" config NET_ARP - bool + bool "Address Resolution Protocol" default y depends on NET_ETHERNET && NET_IPv4 ---help---