mirror of https://github.com/OpenIPC/firmware.git
26 lines
1.2 KiB
Diff
26 lines
1.2 KiB
Diff
diff -drupN a/net/ipv4/Makefile b/net/ipv4/Makefile
|
|
--- a/net/ipv4/Makefile 2018-08-06 17:23:04.000000000 +0300
|
|
+++ b/net/ipv4/Makefile 2022-06-12 05:28:14.000000000 +0300
|
|
@@ -7,16 +7,19 @@ obj-y := route.o inetpeer.o protocol
|
|
ip_output.o ip_sockglue.o inet_hashtables.o \
|
|
inet_timewait_sock.o inet_connection_sock.o \
|
|
tcp.o tcp_input.o tcp_output.o tcp_timer.o tcp_ipv4.o \
|
|
- tcp_minisocks.o tcp_cong.o tcp_metrics.o tcp_fastopen.o \
|
|
+ tcp_minisocks.o tcp_cong.o tcp_fastopen.o \
|
|
tcp_rate.o tcp_recovery.o \
|
|
tcp_offload.o datagram.o raw.o udp.o udplite.o \
|
|
udp_offload.o arp.o icmp.o devinet.o af_inet.o igmp.o \
|
|
fib_frontend.o fib_semantics.o fib_trie.o \
|
|
- inet_fragment.o ping.o ip_tunnel_core.o gre_offload.o
|
|
+ inet_fragment.o ip_tunnel_core.o gre_offload.o
|
|
|
|
obj-$(CONFIG_NET_IP_TUNNEL) += ip_tunnel.o
|
|
+obj-$(CONFIG_IP_PING) += ping.o
|
|
obj-$(CONFIG_SYSCTL) += sysctl_net_ipv4.o
|
|
+obj-$(CONFIG_SYSFS) += sysfs_net_ipv4.o
|
|
obj-$(CONFIG_PROC_FS) += proc.o
|
|
+obj-$(CONFIG_TCP_METRICS) += tcp_metrics.o
|
|
obj-$(CONFIG_IP_MULTIPLE_TABLES) += fib_rules.o
|
|
obj-$(CONFIG_IP_MROUTE) += ipmr.o
|
|
obj-$(CONFIG_NET_IPIP) += ipip.o
|