summaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorJerome Forissier <[email protected]>2024-11-12 16:44:29 +0100
committerTom Rini <[email protected]>2024-11-18 13:32:16 -0600
commitdeb9a07cf167f68184fe782047bfd77c238276cd (patch)
tree4afa879be68e257fb42e3279f6431281c5845761 /Kconfig
parent2071583c8f5bae130e0fbf3aea658b378266a58d (diff)
Kconfig: describe NET, NO_NET, LWIP_DEBUG and LWIP_ASSERT
Some Kconfig symbols introduced in commit 8cb330355bd5 ("net: introduce alternative implementation as net/lwip/") need a full description. The NET symbol needs one, too. Signed-off-by: Jerome Forissier <[email protected]> Reviewed-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig5
1 files changed, 5 insertions, 0 deletions
diff --git a/Kconfig b/Kconfig
index eb55f2511d9..1f5b0f1972d 100644
--- a/Kconfig
+++ b/Kconfig
@@ -765,10 +765,15 @@ choice
config NO_NET
bool "No networking support"
+ help
+ Do not include networking support
config NET
bool "Legacy U-Boot networking stack"
imply NETDEVICES
+ help
+ Include networking support with U-Boot's internal implementation of
+ the TCP/IP protocol stack.
config NET_LWIP
bool "Use lwIP for networking stack"