mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
5fc889911a
Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
10 lines
341 B
Makefile
10 lines
341 B
Makefile
#
|
|
# Makefile for the network team driver
|
|
#
|
|
|
|
obj-$(CONFIG_NET_TEAM) += team.o
|
|
obj-$(CONFIG_NET_TEAM_MODE_BROADCAST) += team_mode_broadcast.o
|
|
obj-$(CONFIG_NET_TEAM_MODE_ROUNDROBIN) += team_mode_roundrobin.o
|
|
obj-$(CONFIG_NET_TEAM_MODE_ACTIVEBACKUP) += team_mode_activebackup.o
|
|
obj-$(CONFIG_NET_TEAM_MODE_LOADBALANCE) += team_mode_loadbalance.o
|