2005-04-17 06:20:36 +08:00
|
|
|
#
|
|
|
|
# Makefile for the Linux TCP/IP (INET6) layer.
|
|
|
|
#
|
|
|
|
|
|
|
|
obj-$(CONFIG_IPV6) += ipv6.o
|
|
|
|
|
2006-10-11 05:47:44 +08:00
|
|
|
ipv6-objs := af_inet6.o anycast.o ip6_output.o ip6_input.o addrconf.o \
|
2007-11-14 14:56:23 +08:00
|
|
|
addrlabel.o \
|
2008-03-07 08:22:02 +08:00
|
|
|
route.o ip6_fib.o ipv6_sockglue.o ndisc.o udp.o udplite.o \
|
2013-05-23 04:17:31 +08:00
|
|
|
raw.o icmp.o mcast.o reassembly.o tcp_ipv6.o ping.o \
|
2016-04-05 23:22:51 +08:00
|
|
|
exthdrs.o datagram.o ip6_flowlabel.o inet6_connection_sock.o \
|
|
|
|
udp_offload.o
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-04-05 23:22:51 +08:00
|
|
|
ipv6-offload := ip6_offload.o tcpv6_offload.o exthdrs_offload.o
|
2012-11-15 16:49:16 +08:00
|
|
|
|
2007-12-05 17:43:25 +08:00
|
|
|
ipv6-$(CONFIG_SYSCTL) = sysctl_net_ipv6.o
|
2008-04-03 08:22:53 +08:00
|
|
|
ipv6-$(CONFIG_IPV6_MROUTE) += ip6mr.o
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
ipv6-$(CONFIG_XFRM) += xfrm6_policy.o xfrm6_state.o xfrm6_input.o \
|
2014-03-14 14:28:07 +08:00
|
|
|
xfrm6_output.o xfrm6_protocol.o
|
2006-01-11 13:02:21 +08:00
|
|
|
ipv6-$(CONFIG_NETFILTER) += netfilter.o
|
2006-08-04 18:39:02 +08:00
|
|
|
ipv6-$(CONFIG_IPV6_MULTIPLE_TABLES) += fib6_rules.o
|
2007-04-25 13:15:40 +08:00
|
|
|
ipv6-$(CONFIG_PROC_FS) += proc.o
|
2008-02-08 13:49:26 +08:00
|
|
|
ipv6-$(CONFIG_SYN_COOKIES) += syncookies.o
|
2016-06-28 03:02:46 +08:00
|
|
|
ipv6-$(CONFIG_NETLABEL) += calipso.o
|
2006-08-24 11:31:11 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
ipv6-objs += $(ipv6-y)
|
|
|
|
|
|
|
|
obj-$(CONFIG_INET6_AH) += ah6.o
|
|
|
|
obj-$(CONFIG_INET6_ESP) += esp6.o
|
|
|
|
obj-$(CONFIG_INET6_IPCOMP) += ipcomp6.o
|
2006-03-28 17:12:13 +08:00
|
|
|
obj-$(CONFIG_INET6_XFRM_TUNNEL) += xfrm6_tunnel.o
|
|
|
|
obj-$(CONFIG_INET6_TUNNEL) += tunnel6.o
|
2006-05-28 14:05:54 +08:00
|
|
|
obj-$(CONFIG_INET6_XFRM_MODE_TRANSPORT) += xfrm6_mode_transport.o
|
|
|
|
obj-$(CONFIG_INET6_XFRM_MODE_TUNNEL) += xfrm6_mode_tunnel.o
|
2006-08-24 08:59:44 +08:00
|
|
|
obj-$(CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION) += xfrm6_mode_ro.o
|
2006-10-04 14:47:05 +08:00
|
|
|
obj-$(CONFIG_INET6_XFRM_MODE_BEET) += xfrm6_mode_beet.o
|
2007-06-27 14:56:32 +08:00
|
|
|
obj-$(CONFIG_IPV6_MIP6) += mip6.o
|
2015-12-16 07:41:35 +08:00
|
|
|
obj-$(CONFIG_IPV6_ILA) += ila/
|
2006-01-11 13:02:21 +08:00
|
|
|
obj-$(CONFIG_NETFILTER) += netfilter/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-08-19 14:07:34 +08:00
|
|
|
obj-$(CONFIG_IPV6_VTI) += ip6_vti.o
|
2006-10-11 05:47:44 +08:00
|
|
|
obj-$(CONFIG_IPV6_SIT) += sit.o
|
2005-04-17 06:20:36 +08:00
|
|
|
obj-$(CONFIG_IPV6_TUNNEL) += ip6_tunnel.o
|
2012-08-10 08:51:50 +08:00
|
|
|
obj-$(CONFIG_IPV6_GRE) += ip6_gre.o
|
fou: fix IPv6 Kconfig options
The Kconfig options I added to work around broken compilation ended
up screwing up things more, as I used the wrong symbol to control
compilation of the file, resulting in IPv6 fou support to never be built
into the kernel.
Changing CONFIG_NET_FOU_IPV6_TUNNELS to CONFIG_IPV6_FOU fixes that
problem, I had renamed the symbol in one location but not the other,
and as the file is never being used by other kernel code, this did not
lead to a build failure that I would have caught.
After that fix, another issue with the same patch becomes obvious, as we
'select INET6_TUNNEL', which is related to IPV6_TUNNEL, but not the same,
and this can still cause the original build failure when IPV6_TUNNEL is
not built-in but IPV6_FOU is. The fix is equally trivial, we just need
to select the right symbol.
I have successfully build 350 randconfig kernels with this patch
and verified that the driver is now being built.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reported-by: Valentin Rothberg <valentinrothberg@gmail.com>
Fixes: fabb13db448e ("fou: add Kconfig options for IPv6 support")
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-06-01 04:42:11 +08:00
|
|
|
obj-$(CONFIG_IPV6_FOU) += fou6.o
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-04-25 19:08:30 +08:00
|
|
|
obj-y += addrconf_core.o exthdrs_core.o ip6_checksum.o ip6_icmp.o
|
2012-12-16 14:47:50 +08:00
|
|
|
obj-$(CONFIG_INET) += output_core.o protocol.o $(ipv6-offload)
|
2005-08-12 20:26:18 +08:00
|
|
|
|
|
|
|
obj-$(subst m,y,$(CONFIG_IPV6)) += inet6_hashtables.o
|
2014-09-20 09:02:53 +08:00
|
|
|
|
|
|
|
ifneq ($(CONFIG_IPV6),)
|
|
|
|
obj-$(CONFIG_NET_UDP_TUNNEL) += ip6_udp_tunnel.o
|
2015-05-02 20:01:07 +08:00
|
|
|
obj-y += mcast_snoop.o
|
2014-09-20 09:02:53 +08:00
|
|
|
endif
|