mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 09:08:51 -05:00
Add support for two new devices: X552 SFP+ 10 GbE, and the single port version of X550T. Submitted by: erj Reviewed by: gnn Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D4186
15 lines
471 B
Makefile
15 lines
471 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/ixgbe
|
|
|
|
KMOD = if_ixv
|
|
SRCS = device_if.h bus_if.h pci_if.h
|
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h
|
|
SRCS += if_ixv.c ix_txrx.c ixgbe_osdep.c
|
|
# Shared source
|
|
SRCS += ixgbe_common.c ixgbe_api.c ixgbe_phy.c ixgbe_mbx.c ixgbe_vf.c
|
|
SRCS += ixgbe_dcb.c ixgbe_dcb_82598.c ixgbe_dcb_82599.c
|
|
SRCS += ixgbe_82598.c ixgbe_82599.c ixgbe_x540.c ixgbe_x550.c
|
|
CFLAGS+= -I${.CURDIR}/../../dev/ixgbe -DSMP
|
|
|
|
.include <bsd.kmod.mk>
|