svn commit: r236037 - user/np/toe_iwarp/sys/modules/cxgb

Navdeep Parhar np at FreeBSD.org
Sat May 26 01:35:10 UTC 2012


Author: np
Date: Sat May 26 01:35:09 2012
New Revision: 236037
URL: http://svn.freebsd.org/changeset/base/236037

Log:
  Limit the cxgb TOE and iWARP drivers to amd64 and i386 for now.

Modified:
  user/np/toe_iwarp/sys/modules/cxgb/Makefile

Modified: user/np/toe_iwarp/sys/modules/cxgb/Makefile
==============================================================================
--- user/np/toe_iwarp/sys/modules/cxgb/Makefile	Sat May 26 01:34:36 2012	(r236036)
+++ user/np/toe_iwarp/sys/modules/cxgb/Makefile	Sat May 26 01:35:09 2012	(r236037)
@@ -1,7 +1,12 @@
 # $FreeBSD$
 SUBDIR= cxgb
 SUBDIR+= cxgb_t3fw
-SUBDIR+= tom
-SUBDIR+= iw_cxgb
+SUBDIR+= ${_tom}
+SUBDIR+= ${_iw_cxgb}
+
+.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
+_tom=		tom
+_iw_cxgb=	iw_cxgb
+.endif
 
 .include <bsd.subdir.mk>


More information about the svn-src-user mailing list