rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0 |
2 | # | ||||
3 | # Makefile for the network team driver | ||||
4 | # | ||||
5 | |||||
6 | obj-$(CONFIG_NET_TEAM) += team.o | ||||
7 | obj-$(CONFIG_NET_TEAM_MODE_BROADCAST) += team_mode_broadcast.o | ||||
8 | obj-$(CONFIG_NET_TEAM_MODE_ROUNDROBIN) += team_mode_roundrobin.o | ||||
9 | obj-$(CONFIG_NET_TEAM_MODE_RANDOM) += team_mode_random.o | ||||
10 | obj-$(CONFIG_NET_TEAM_MODE_ACTIVEBACKUP) += team_mode_activebackup.o | ||||
11 | obj-$(CONFIG_NET_TEAM_MODE_LOADBALANCE) += team_mode_loadbalance.o |