Linux Audio

Check our new training course

Loading...
Note: File does not exist in v4.6.
 1# SPDX-License-Identifier: GPL-2.0
 2
 3obj-$(CONFIG_NETDEVSIM) += netdevsim.o
 4
 5netdevsim-objs := \
 6	netdev.o dev.o ethtool.o fib.o bus.o health.o hwstats.o udp_tunnels.o
 7
 8ifeq ($(CONFIG_BPF_SYSCALL),y)
 9netdevsim-objs += \
10	bpf.o
11endif
12
13ifneq ($(CONFIG_XFRM_OFFLOAD),)
14netdevsim-objs += ipsec.o
15endif
16
17ifneq ($(CONFIG_PSAMPLE),)
18netdevsim-objs += psample.o
19endif
20
21ifneq ($(CONFIG_MACSEC),)
22netdevsim-objs += macsec.o
23endif