From 2ec7e70509093152eaba1943d79a62442ceb1ce3 Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Fri, 20 Sep 2019 16:15:45 +0300 Subject: [PATCH] net: routing: Hide routing option temporarily Currently the CONFIG_NET_ROUTING option has limited use as there would be some entity that populates routing table. Previously it was RPL that did it but RPL support was removed some time ago. Fixes #16320 Signed-off-by: Jukka Rissanen --- subsys/net/ip/Kconfig | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/subsys/net/ip/Kconfig b/subsys/net/ip/Kconfig index dd8cc8e3d27..cc7bef673af 100644 --- a/subsys/net/ip/Kconfig +++ b/subsys/net/ip/Kconfig @@ -219,12 +219,16 @@ config NET_ROUTE depends on NET_IPV6_NBR_CACHE default y if NET_IPV6_NBR_CACHE +# Temporarily hide the routing option as we do not have RPL in the system +# that used to populate the routing table. config NET_ROUTING - bool "IP routing between interfaces" + bool depends on NET_ROUTE help Allow IPv6 routing between different network interfaces and - technologies. + technologies. Currently this has limited use as some entity + would need to populate the routing table. RPL used to do that + earlier but currently there is no RPL support in Zephyr. config NET_MAX_ROUTES int "Max number of routing entries stored."