diff options
| author | Jack F Vogel <jfv@FreeBSD.org> | 2008-04-25 21:19:41 +0000 |
|---|---|---|
| committer | Jack F Vogel <jfv@FreeBSD.org> | 2008-04-25 21:19:41 +0000 |
| commit | 20e8415eb492739b6a270ea49d808a6255149788 (patch) | |
| tree | ba89bf27aac0358813a723b89ba73f0917631cec /sys/modules/em | |
| parent | d74e3f17f5115b842e7daef42f105688afd13cf2 (diff) | |
Notes
Diffstat (limited to 'sys/modules/em')
| -rw-r--r-- | sys/modules/em/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sys/modules/em/Makefile b/sys/modules/em/Makefile index 6fe050bff7098..8a2dbdd4587fb 100644 --- a/sys/modules/em/Makefile +++ b/sys/modules/em/Makefile @@ -7,9 +7,16 @@ 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 -CFLAGS+= -I${.CURDIR}/../../dev/em +CFLAGS+= -DNO_82575_SUPPORT -I${.CURDIR}/../../dev/em -# DEVICE_POLLING gives you Legacy interrupt handling +# Uncomment this to disable Fast interrupt handling. +# and enable legacy interrupt handling +#CFLAGS += -DEM_LEGACY_IRQ + +# This option enables IEEE 1588 Precision Time Protocol +#CFLAGS += -DEM_TIMESYNC + +# DEVICE_POLLING for a non-interrupt-driven method #CFLAGS += -DDEVICE_POLLING clean: |
