diff options
author | Viacheslav Mitrofanov <v.v.mitrofanov@yadro.com> | 2022-12-02 12:17:59 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-05 12:47:16 -0500 |
commit | 3cc04a3ab2dc45ce23c66a3fa7e2e8a0f0689141 (patch) | |
tree | a96fdc017f4bebc9408e0399b98e91c00da656a3 /net/Makefile | |
parent | 33b5066a595661315ec236269b3154297d4cf779 (diff) | |
download | u-boot-3cc04a3ab2dc45ce23c66a3fa7e2e8a0f0689141.zip u-boot-3cc04a3ab2dc45ce23c66a3fa7e2e8a0f0689141.tar.gz u-boot-3cc04a3ab2dc45ce23c66a3fa7e2e8a0f0689141.tar.bz2 |
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 <v.v.mitrofanov@yadro.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net/Makefile')
-rw-r--r-- | net/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 4f757a2..00d6f9d 100644 --- a/net/Makefile +++ b/net/Makefile @@ -21,6 +21,7 @@ obj-$(CONFIG_DM_MDIO_MUX) += mdio-mux-uclass.o obj-$(CONFIG_NET) += eth_common.o obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o obj-$(CONFIG_NET) += net.o +obj-$(CONFIG_IPV6) += net6.o obj-$(CONFIG_CMD_NFS) += nfs.o obj-$(CONFIG_CMD_PING) += ping.o obj-$(CONFIG_CMD_PCAP) += pcap.o |