From 1025a58857e51798030a64fa0fb3a22ce954d59c Mon Sep 17 00:00:00 2001 From: hselasky Date: Thu, 22 Oct 2015 09:50:45 +0000 Subject: Rename linuxapi[.ko] into linuxkpi[.ko], to reflect that it is a 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 --- sys/modules/Makefile | 4 ++-- sys/modules/linuxapi/Makefile | 18 ------------------ sys/modules/linuxkpi/Makefile | 18 ++++++++++++++++++ 3 files changed, 20 insertions(+), 20 deletions(-) delete mode 100644 sys/modules/linuxapi/Makefile create mode 100644 sys/modules/linuxkpi/Makefile (limited to 'sys/modules') diff --git a/sys/modules/Makefile b/sys/modules/Makefile index ad54a59..e22a92a 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -203,7 +203,7 @@ SUBDIR= \ ${_linux} \ ${_linux_common} \ ${_linux64} \ - ${_linuxapi} \ + ${_linuxkpi} \ lmc \ lpt \ mac_biba \ @@ -534,7 +534,7 @@ _linprocfs= linprocfs _linsysfs= linsysfs _linux= linux .if ${MK_OFED} != "no" -_linuxapi= linuxapi +_linuxkpi= linuxkpi .endif _ndis= ndis .if ${MK_CDDL} != "no" || defined(ALL_MODULES) diff --git a/sys/modules/linuxapi/Makefile b/sys/modules/linuxapi/Makefile deleted file mode 100644 index b10d125..0000000 --- a/sys/modules/linuxapi/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# $FreeBSD$ -.PATH: ${.CURDIR}/../../ofed/include/linux - -KMOD= linuxapi -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 diff --git a/sys/modules/linuxkpi/Makefile b/sys/modules/linuxkpi/Makefile new file mode 100644 index 0000000..47aa6cd --- /dev/null +++ b/sys/modules/linuxkpi/Makefile @@ -0,0 +1,18 @@ +# $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 -- cgit v1.1