Date: Mon, 21 Mar 2011 21:35:20 +0000 (UTC) From: Jeff Roberson <jeff@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r219849 - head/sys/modules Message-ID: <201103212135.p2LLZKUW021590@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jeff Date: Mon Mar 21 21:35:19 2011 New Revision: 219849 URL: http://svn.freebsd.org/changeset/base/219849 Log: - For now, disable ofed module build unless MK_OFED is set. Modified: head/sys/modules/Makefile Modified: head/sys/modules/Makefile ============================================================================== --- head/sys/modules/Makefile Mon Mar 21 21:34:12 2011 (r219848) +++ head/sys/modules/Makefile Mon Mar 21 21:35:19 2011 (r219849) @@ -185,9 +185,9 @@ SUBDIR= ${_3dfx} \ mfi \ mii \ mlx \ - mlx4 \ - mlx4ib \ - mlxen \ + ${_mlx4} \ + ${_mlx4ib} \ + ${_mlxen} \ ${_mly} \ mmc \ mmcsd \ @@ -198,7 +198,7 @@ SUBDIR= ${_3dfx} \ msdosfs_iconv \ ${_mse} \ msk \ - mthca \ + ${_mthca} \ mvs \ mwl \ mwlfw \ @@ -673,6 +673,13 @@ _zfs= zfs .endif .endif +.if ${MK_OFED} != "no" || defined(ALL_MODULES) +_mthca= mthca +_mlx4= mlx4 +_mlx4ib= mlx4ib +_mlxen= mlxen +.endif + .if defined(MODULES_OVERRIDE) && !defined(ALL_MODULES) SUBDIR=${MODULES_OVERRIDE} .endif @@ -690,5 +697,6 @@ afterinstall: kldxref ${DESTDIR}${KMODDIR}; \ fi .endif +#endif .include <bsd.subdir.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201103212135.p2LLZKUW021590>