svn commit: r348237 - stable/12/sys/modules

Ed Maste emaste at FreeBSD.org
Fri May 24 13:39:57 UTC 2019


Author: emaste
Date: Fri May 24 13:39:56 2019
New Revision: 348237
URL: https://svnweb.freebsd.org/changeset/base/348237

Log:
  MFC r346598: Enable Mellanox drivers (modules) on AArch64
  
  PR:		237055
  Submitted by:	Greg V <greg at unrelenting.technology>

Modified:
  stable/12/sys/modules/Makefile
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/modules/Makefile
==============================================================================
--- stable/12/sys/modules/Makefile	Fri May 24 11:45:32 2019	(r348236)
+++ stable/12/sys/modules/Makefile	Fri May 24 13:39:56 2019	(r348237)
@@ -498,7 +498,24 @@ SUBDIR+=	fdt
 SUBDIR+=	linprocfs
 SUBDIR+=	linsysfs
 _ena=		ena
+.if ${MK_OFED} != "no" || defined(ALL_MODULES)
+_ibcore=	ibcore
+_ipoib=		ipoib
+_iser=		iser
 .endif
+_mlx4=		mlx4
+_mlx5=		mlx5
+.if (${MK_INET_SUPPORT} != "no" && ${MK_INET6_SUPPORT} != "no") || \
+	defined(ALL_MODULES)
+_mlx4en=	mlx4en
+_mlx5en=	mlx5en
+.endif
+.if ${MK_OFED} != "no" || defined(ALL_MODULES)
+_mthca=		mthca
+_mlx4ib=	mlx4ib
+_mlx5ib=	mlx5ib
+.endif
+.endif
 
 .if ${MK_NAND} != "no" || defined(ALL_MODULES)
 _nandfs=	nandfs
@@ -606,15 +623,8 @@ _ep=		ep
 _et=		et
 _exca=		exca
 _fe=		fe
-.if ${MK_OFED} != "no" || defined(ALL_MODULES)
-_ibcore=        ibcore
-.endif
 _if_ndis=	if_ndis
 _io=		io
-.if ${MK_OFED} != "no" || defined(ALL_MODULES)
-_ipoib=         ipoib
-_iser=		iser
-.endif
 _ix=		ix
 _ixv=		ixv
 _linux=		linux
@@ -687,18 +697,6 @@ _ipwfw=		ipwfw
 _iwifw=		iwifw
 _iwmfw=		iwmfw
 _iwnfw=		iwnfw
-.endif
-_mlx4=		mlx4
-_mlx5=		mlx5
-.if (${MK_INET_SUPPORT} != "no" && ${MK_INET6_SUPPORT} != "no") || \
-	defined(ALL_MODULES)
-_mlx4en=	mlx4en
-_mlx5en=	mlx5en
-.endif
-.if ${MK_OFED} != "no" || defined(ALL_MODULES)
-_mthca=		mthca
-_mlx4ib=	mlx4ib
-_mlx5ib=	mlx5ib
 .endif
 _mly=		mly
 _nfe=		nfe


More information about the svn-src-all mailing list