svn commit: r206215 - in stable/8/sys/modules: em ixgbe
Jack F Vogel
jfv at FreeBSD.org
Mon Apr 5 21:43:23 UTC 2010
Author: jfv
Date: Mon Apr 5 21:43:22 2010
New Revision: 206215
URL: http://svn.freebsd.org/changeset/base/206215
Log:
Add missing module Makefile for ixgbe and em MFCs
Modified:
stable/8/sys/modules/em/Makefile
stable/8/sys/modules/ixgbe/Makefile
Modified: stable/8/sys/modules/em/Makefile
==============================================================================
--- stable/8/sys/modules/em/Makefile Mon Apr 5 21:36:04 2010 (r206214)
+++ stable/8/sys/modules/em/Makefile Mon Apr 5 21:43:22 2010 (r206215)
@@ -2,15 +2,19 @@
.PATH: ${.CURDIR}/../../dev/e1000
KMOD = if_em
SRCS = device_if.h bus_if.h pci_if.h opt_inet.h
-SRCS += if_em.c $(SHARED_SRCS)
-SHARED_SRCS = e1000_api.c e1000_phy.c e1000_nvm.c e1000_mac.c e1000_manage.c
-SHARED_SRCS += e1000_80003es2lan.c e1000_82542.c e1000_82541.c e1000_82543.c
-SHARED_SRCS += e1000_82540.c e1000_ich8lan.c e1000_82571.c e1000_osdep.c
-SHARED_SRCS += e1000_82575.c
+SRCS += $(CORE_SRC) $(LEGACY_SRC)
+SRCS += $(COMMON_SHARED) $(LEGACY_SHARED) $(PCIE_SHARED)
+CORE_SRC = if_em.c e1000_osdep.c
+# This is the Legacy, pre-PCIE source, it can be
+# undefined when using modular driver if not needed
+LEGACY_SRC += if_lem.c
+COMMON_SHARED = e1000_api.c e1000_phy.c e1000_nvm.c e1000_mac.c e1000_manage.c
+PCIE_SHARED = e1000_80003es2lan.c e1000_ich8lan.c e1000_82571.c e1000_82575.c
+LEGACY_SHARED = e1000_82540.c e1000_82542.c e1000_82541.c e1000_82543.c
-CFLAGS+= -I${.CURDIR}/../../dev/e1000
+CFLAGS += -I${.CURDIR}/../../dev/e1000
-# DEVICE_POLLING gives you Legacy interrupt handling
+# DEVICE_POLLING for a non-interrupt-driven method
#CFLAGS += -DDEVICE_POLLING
clean:
Modified: stable/8/sys/modules/ixgbe/Makefile
==============================================================================
--- stable/8/sys/modules/ixgbe/Makefile Mon Apr 5 21:36:04 2010 (r206214)
+++ stable/8/sys/modules/ixgbe/Makefile Mon Apr 5 21:43:22 2010 (r206215)
@@ -6,7 +6,7 @@ SRCS += ixgbe.c
# Shared source
SRCS += ixgbe_common.c ixgbe_api.c ixgbe_phy.c
SRCS += ixgbe_82599.c ixgbe_82598.c
-CFLAGS+= -I${.CURDIR}/../../dev/ixgbe -DSMP
+CFLAGS+= -I${.CURDIR}/../../dev/ixgbe -DSMP -DIXGBE_FDIR
clean:
rm -f device_if.h bus_if.h pci_if.h setdef* *_StripErr
More information about the svn-src-stable
mailing list