43d1e6ee29
When aliasing a kernel module to a different name (ie if_igb for if_em), it's better to use symlinks than hard links. kldxref will omit entries for the links, ensuring that the loaded module has the correct name. Reviewed by: imp MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D19979
21 lines
536 B
Makefile
21 lines
536 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/ixl
|
|
|
|
KMOD = if_iavf
|
|
SRCS = device_if.h bus_if.h pci_if.h ifdi_if.h
|
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h opt_ixl.h opt_iflib.h opt_global.h
|
|
SRCS += if_iavf.c iavf_vc.c ixl_txrx.c i40e_osdep.c
|
|
|
|
# Shared source
|
|
SRCS += i40e_common.c i40e_nvm.c i40e_adminq.c
|
|
|
|
# Debug messages / sysctls
|
|
# CFLAGS += -DIXL_DEBUG
|
|
# Enable asserts and other debugging facilities
|
|
# CFLAGS += -DINVARIANTS -DINVARIANTS_SUPPORT -DWITNESS
|
|
|
|
SYMLINKS= ${KMOD}.ko ${KMODDIR}/if_ixlv.ko
|
|
|
|
.include <bsd.kmod.mk>
|