mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 10:20:24 -05:00
Added support for application management interface. There are two types of commands supported: 1. Firmware IOCTLs: These ioctls are meant for firmware consumption. Driver acts as a transport for these. 2. Driver only IOCTLs: These ioctls are meant for driver consumption. Driver will serve these ioctls without sending them down to firmware. Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D36448
15 lines
303 B
Makefile
15 lines
303 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/bnxt
|
|
|
|
KMOD = if_bnxt
|
|
SRCS = device_if.h bus_if.h pci_if.h pci_iov_if.h ifdi_if.h
|
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h
|
|
SRCS += bnxt_txrx.c if_bnxt.c
|
|
SRCS += bnxt_hwrm.c
|
|
SRCS += bnxt_sysctl.c
|
|
SRCS += bnxt_mgmt.c
|
|
|
|
CFLAGS+= -DIFLIB
|
|
|
|
.include <bsd.kmod.mk>
|