Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 May 2012 01:35:10 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r236037 - user/np/toe_iwarp/sys/modules/cxgb
Message-ID:  <201205260135.q4Q1ZAGa044776@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205260135.q4Q1ZAGa044776>