diff options
| author | Viacheslav Mitrofanov <[email protected]> | 2022-12-02 12:17:59 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-12-05 12:47:16 -0500 |
| commit | 3cc04a3ab2dc45ce23c66a3fa7e2e8a0f0689141 (patch) | |
| tree | a96fdc017f4bebc9408e0399b98e91c00da656a3 /net/Kconfig | |
| parent | 33b5066a595661315ec236269b3154297d4cf779 (diff) | |
net: ipv6: Add IPv6 build options
Add options to Makefile and Kconfig file to build IPv6
Series-changes: 3
- Added help for IPv6 support
Signed-off-by: Viacheslav Mitrofanov <[email protected]>
Reviewed-by: Ramon Fried <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'net/Kconfig')
| -rw-r--r-- | net/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/Kconfig b/net/Kconfig index cb600fe5eb4..a1ec3f8542e 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -190,6 +190,16 @@ config PROT_TCP_SACK This option should be turn on if you want to achieve the fastest file transfer possible. +config IPV6 + bool "IPv6 support" + help + Enable IPv6 support. It includes Neighbour Discovery protocol, ICMPv6 + and auxiliary stuff to make it work. Since it is enabled u-boot + network subsystem can get and handle incoming packets and send packets + through IPv6 network. It allows to use environment variables such as + ip6addr, serverip6. If a u-boot command is capable to parse an IPv6 + address and find it, it will force using IPv6 in the network stack. + endif # if NET config SYS_RX_ETH_BUFFER |
