mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
This commit has no functional change. Reviewed-by: Jamal Hadi Salim <jhs@mojatatu.com> Signed-off-by: Davide Caratti <dcaratti@redhat.com> Link: https://patch.msgid.link/b7881fd53f8a5d8eff4eae8121576c3cd60c2ed7.1773945414.git.dcaratti@redhat.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
28 lines
483 B
Makefile
28 lines
483 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_NETDEVSIM) += netdevsim.o
|
|
|
|
netdevsim-objs := \
|
|
netdev.o dev.o ethtool.o fib.o bus.o health.o hwstats.o udp_tunnels.o tc.o
|
|
|
|
ifeq ($(CONFIG_BPF_SYSCALL),y)
|
|
netdevsim-objs += \
|
|
bpf.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_XFRM_OFFLOAD),)
|
|
netdevsim-objs += ipsec.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_PSAMPLE),)
|
|
netdevsim-objs += psample.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_INET_PSP),)
|
|
netdevsim-objs += psp.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_MACSEC),)
|
|
netdevsim-objs += macsec.o
|
|
endif
|