brintos

brintos / linux-shallow public Read only

0
0
Text · 419 B · f8de93b Raw
24 lines · plain
1# SPDX-License-Identifier: GPL-2.02 3obj-$(CONFIG_NETDEVSIM) += netdevsim.o4 5netdevsim-objs := \6	netdev.o dev.o ethtool.o fib.o bus.o health.o hwstats.o udp_tunnels.o7 8ifeq ($(CONFIG_BPF_SYSCALL),y)9netdevsim-objs += \10	bpf.o11endif12 13ifneq ($(CONFIG_XFRM_OFFLOAD),)14netdevsim-objs += ipsec.o15endif16 17ifneq ($(CONFIG_PSAMPLE),)18netdevsim-objs += psample.o19endif20 21ifneq ($(CONFIG_MACSEC),)22netdevsim-objs += macsec.o23endif24