mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
kernel programming interface module, KPI, to avoid confusion with the existing Linux userspace binary compatibility shims. Bump the FreeBSD_version number. Reviewed by: np @ Suggested by: dumbbell @ Sponsored by: Mellanox Technologies
18 lines
280 B
Makefile
18 lines
280 B
Makefile
# $FreeBSD$
|
|
.PATH: ${.CURDIR}/../../ofed/include/linux
|
|
|
|
KMOD= linuxkpi
|
|
SRCS= linux_kmod.c \
|
|
linux_compat.c \
|
|
linux_pci.c \
|
|
linux_radix.c \
|
|
linux_idr.c
|
|
|
|
SRCS+= bus_if.h \
|
|
device_if.h \
|
|
pci_if.h \
|
|
vnode_if.h
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../ofed/include/
|
|
|
|
.include <bsd.kmod.mk>
|