mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
hardware driver update from Mellanox Technologies. - Remove empty files from the OFED Linux Emulation layer. - Fix compile warnings related to printf() and the "%lld" and "%llx" format specifiers. - Add some missing 2-clause BSD copyrights. - Add "Mellanox Technologies, Ltd." to list of copyright holders. - Add some new compatibility files. - Fix order of uninit in the mlx4ib module to avoid crash at unload using the new module_exit_order() function. MFC after: 1 week Sponsored by: Mellanox Technologies
18 lines
650 B
Makefile
18 lines
650 B
Makefile
# $FreeBSD$
|
|
.PATH: ${.CURDIR}/../../ofed/drivers/net/mlx4
|
|
.PATH: ${.CURDIR}/../../ofed/include/linux
|
|
KMOD = mlx4
|
|
SRCS = device_if.h bus_if.h pci_if.h vnode_if.h
|
|
SRCS+= alloc.c catas.c cmd.c cq.c eq.c fw.c icm.c intf.c main.c mcg.c mr.c linux_compat.c linux_radix.c linux_idr.c
|
|
SRCS+= pd.c port.c profile.c qp.c reset.c sense.c srq.c resource_tracker.c sys_tune.c
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../ofed/drivers/net/mlx4
|
|
CFLAGS+= -I${.CURDIR}/../../ofed/include/
|
|
|
|
.include <bsd.kmod.mk>
|
|
|
|
CFLAGS+= -Wno-cast-qual -Wno-pointer-arith ${GCC_MS_EXTENSIONS}
|
|
CFLAGS+= -fms-extensions
|
|
|
|
CWARNFLAGS.mcg.c= -Wno-unused
|
|
CWARNFLAGS+= ${CWARNFLAGS.${.IMPSRC:T}}
|