mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
90833aa4f4
This patch contains the scheduled removal of the frame diverter. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: David S. Miller <davem@davemloft.net>
20 lines
569 B
Makefile
20 lines
569 B
Makefile
#
|
|
# Makefile for the Linux networking core.
|
|
#
|
|
|
|
obj-y := sock.o request_sock.o skbuff.o iovec.o datagram.o stream.o scm.o \
|
|
gen_stats.o gen_estimator.o
|
|
|
|
obj-$(CONFIG_SYSCTL) += sysctl_net_core.o
|
|
|
|
obj-y += dev.o ethtool.o dev_mcast.o dst.o netevent.o \
|
|
neighbour.o rtnetlink.o utils.o link_watch.o filter.o
|
|
|
|
obj-$(CONFIG_XFRM) += flow.o
|
|
obj-$(CONFIG_SYSFS) += net-sysfs.o
|
|
obj-$(CONFIG_NET_PKTGEN) += pktgen.o
|
|
obj-$(CONFIG_WIRELESS_EXT) += wireless.o
|
|
obj-$(CONFIG_NETPOLL) += netpoll.o
|
|
obj-$(CONFIG_NET_DMA) += user_dma.o
|
|
obj-$(CONFIG_FIB_RULES) += fib_rules.o
|