svn commit: r220231 - in head/sys/modules/cxgbe: . if_cxgbe

Navdeep Parhar np at FreeBSD.org
Fri Apr 1 00:25:32 UTC 2011


Author: np
Date: Fri Apr  1 00:25:32 2011
New Revision: 220231
URL: http://svn.freebsd.org/changeset/base/220231

Log:
  Allow multiple modules within sys/modules/cxgbe.  The first one is if_cxgbe.
  
  MFC after:	3 days

Added:
  head/sys/modules/cxgbe/if_cxgbe/
  head/sys/modules/cxgbe/if_cxgbe/Makefile
     - copied, changed from r220221, head/sys/modules/cxgbe/Makefile
Replaced:
  head/sys/modules/cxgbe/Makefile   (contents, props changed)

Added: head/sys/modules/cxgbe/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/cxgbe/Makefile	Fri Apr  1 00:25:32 2011	(r220231)
@@ -0,0 +1,7 @@
+#
+# $FreeBSD$
+#
+
+SUBDIR = if_cxgbe
+
+.include <bsd.subdir.mk>

Copied and modified: head/sys/modules/cxgbe/if_cxgbe/Makefile (from r220221, head/sys/modules/cxgbe/Makefile)
==============================================================================
--- head/sys/modules/cxgbe/Makefile	Thu Mar 31 18:35:44 2011	(r220221, copy source)
+++ head/sys/modules/cxgbe/if_cxgbe/Makefile	Fri Apr  1 00:25:32 2011	(r220231)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 #
 
-CXGBE = ${.CURDIR}/../../dev/cxgbe
+CXGBE = ${.CURDIR}/../../../dev/cxgbe
 .PATH: ${CXGBE} ${CXGBE}/common
 
 KMOD = if_cxgbe
@@ -11,6 +11,6 @@ SRCS+= t4_hw.c
 SRCS+= device_if.h bus_if.h pci_if.h
 SRCS+= opt_inet.h
 
-CFLAGS+= -g -I${CXGBE}
+CFLAGS+= -I${CXGBE}
 
 .include <bsd.kmod.mk>


More information about the svn-src-all mailing list