diff options
| author | Jeff Roberson <jeff@FreeBSD.org> | 2011-03-21 09:58:24 +0000 |
|---|---|---|
| committer | Jeff Roberson <jeff@FreeBSD.org> | 2011-03-21 09:58:24 +0000 |
| commit | aa0a1e58f0189b0fde359a8bda032887e72057fa (patch) | |
| tree | 3051c12f4ce44a65c025b72ec5821b35b2ec46be /sys/modules | |
| parent | e4cd31dd3c7adc94a486ca5309c7096f81fa70f1 (diff) | |
Notes
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 4 | ||||
| -rw-r--r-- | sys/modules/mlx4/Makefile | 14 | ||||
| -rw-r--r-- | sys/modules/mlx4ib/Makefile | 11 | ||||
| -rw-r--r-- | sys/modules/mlxen/Makefile | 13 | ||||
| -rw-r--r-- | sys/modules/mthca/Makefile | 15 |
5 files changed, 57 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 41ed4bfe8721..0925a21a3c1b 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -185,6 +185,9 @@ SUBDIR= ${_3dfx} \ mfi \ mii \ mlx \ + mlx4 \ + mlx4ib \ + mlxen \ ${_mly} \ mmc \ mmcsd \ @@ -195,6 +198,7 @@ SUBDIR= ${_3dfx} \ msdosfs_iconv \ ${_mse} \ msk \ + mthca \ mvs \ mwl \ mwlfw \ diff --git a/sys/modules/mlx4/Makefile b/sys/modules/mlx4/Makefile new file mode 100644 index 000000000000..8ea3340ed513 --- /dev/null +++ b/sys/modules/mlx4/Makefile @@ -0,0 +1,14 @@ +# $FreeBSD$ +.PATH: ${.CURDIR}/../../ofed/drivers/net/mlx4 +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 +SRCS+= pd.c port.c profile.c qp.c reset.c sense.c srq.c xrcd.c + +CFLAGS+= -I${.CURDIR}/../../ofed/drivers/net/mlx4 +CFLAGS+= -I${.CURDIR}/../../ofed/include/ +CFLAGS+= -DINET6 + +.include <bsd.kmod.mk> + +CFLAGS+= -Wno-cast-qual -Wno-pointer-arith -fms-extensions diff --git a/sys/modules/mlx4ib/Makefile b/sys/modules/mlx4ib/Makefile new file mode 100644 index 000000000000..5fe01e733a88 --- /dev/null +++ b/sys/modules/mlx4ib/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ +.PATH: ${.CURDIR}/../../ofed/drivers/infiniband/hw/mlx4 +KMOD = mlx4ib +SRCS = device_if.h bus_if.h pci_if.h vnode_if.h +SRCS+= ah.c cq.c doorbell.c mad.c main.c mr.c qp.c srq.c wc.c + +CFLAGS+= -I${.CURDIR}/../../ofed/include/ -DINET6 + +.include <bsd.kmod.mk> + +CFLAGS+= -Wno-cast-qual -Wno-pointer-arith -fms-extensions diff --git a/sys/modules/mlxen/Makefile b/sys/modules/mlxen/Makefile new file mode 100644 index 000000000000..b83b4a534be2 --- /dev/null +++ b/sys/modules/mlxen/Makefile @@ -0,0 +1,13 @@ +# $FreeBSD$ +.PATH: ${.CURDIR}/../../ofed/drivers/net/mlx4 +KMOD = mlxen +SRCS = device_if.h bus_if.h pci_if.h vnode_if.h +SRCS += en_cq.c en_frag.c en_main.c en_netdev.c en_port.c en_resources.c +SRCS += en_rx.c en_tx.c +CFLAGS+= -I${.CURDIR}/../../ofed/drivers/net/mlx4 +CFLAGS+= -I${.CURDIR}/../../ofed/include/ +CFLAGS+= -DINET6 + +.include <bsd.kmod.mk> + +CFLAGS+= -Wno-cast-qual -Wno-pointer-arith -fms-extensions diff --git a/sys/modules/mthca/Makefile b/sys/modules/mthca/Makefile new file mode 100644 index 000000000000..de860fe9df96 --- /dev/null +++ b/sys/modules/mthca/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../ofed/drivers/infiniband/hw/mthca +KMOD = mthca +SRCS = device_if.h bus_if.h pci_if.h vnode_if.h +SRCS+= mthca_allocator.c mthca_av.c mthca_catas.c mthca_cmd.c mthca_cq.c +SRCS+= mthca_eq.c mthca_mad.c mthca_main.c mthca_mcg.c mthca_memfree.c +SRCS+= mthca_mr.c mthca_pd.c mthca_profile.c mthca_provider.c mthca_qp.c +SRCS+= mthca_reset.c mthca_srq.c mthca_uar.c + +CFLAGS+= -I${.CURDIR}/../../ofed/include/ -DINET6 + +.include <bsd.kmod.mk> + +CFLAGS+= -Wno-cast-qual -Wno-pointer-arith -fms-extensions |
