97b71ce545
- Move all files related to the LinuxKPI into sys/compat/linuxkpi and its subfolders. - Update sys/conf/files and some Makefiles to use new file locations. - Added description of COMPAT_LINUXKPI to sys/conf/NOTES which in turn adds the LinuxKPI to all LINT builds. - The LinuxKPI can be added to the kernel by setting the COMPAT_LINUXKPI option. The OFED kernel option no longer builds the LinuxKPI into the kernel. This was done to keep the build rules for the LinuxKPI in sys/conf/files simple. - Extend the LinuxKPI module to include support for USB by moving the Linux USB compat from usb.ko to linuxkpi.ko. - Bump the FreeBSD_version. - A universe kernel build has been done. Reviewed by: np @ (cxgb and cxgbe related changes only) Sponsored by: Mellanox Technologies
23 lines
688 B
Makefile
23 lines
688 B
Makefile
# $FreeBSD$
|
|
.PATH: ${.CURDIR}/../../ofed/drivers/infiniband/core
|
|
|
|
KMOD= ibcore
|
|
SRCS= addr.c iwcm.c sa_query.c ucma.c uverbs_cmd.c \
|
|
agent.c multicast.c smi.c ud_header.c uverbs_main.c \
|
|
mad.c peer_mem.c umem.c uverbs_marshall.c \
|
|
cache.c device.c packer.c sysfs.c user_mad.c verbs.c \
|
|
cm.c fmr_pool.c mad_rmpp.c ucm.c cma.c \
|
|
vnode_if.h device_if.h bus_if.h pci_if.h \
|
|
opt_inet.h opt_inet6.h
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../ofed/drivers/infiniband/core
|
|
CFLAGS+= -I${.CURDIR}/../../ofed/include
|
|
CFLAGS+= -I${.CURDIR}/../../compat/linuxkpi/common/include
|
|
CFLAGS+= -DINET6 -DINET
|
|
|
|
.include <bsd.kmod.mk>
|
|
|
|
CFLAGS+= -Wno-cast-qual -Wno-pointer-arith
|
|
|
|
CWARNFLAGS.cm.c= -Wno-unused-function
|