diff options
author | davidch <davidch@FreeBSD.org> | 2013-09-20 20:18:49 +0000 |
---|---|---|
committer | davidch <davidch@FreeBSD.org> | 2013-09-20 20:18:49 +0000 |
commit | e226cdd9b86260d8a329201e38a0ea97b4cd4c39 (patch) | |
tree | f12f72cd242d820f494bbb63bc49b513084ced43 /sys/modules/bxe/Makefile | |
parent | 0e1e730ce790f1bb4ce55cde187809b020a3313b (diff) | |
download | FreeBSD-src-e226cdd9b86260d8a329201e38a0ea97b4cd4c39.zip FreeBSD-src-e226cdd9b86260d8a329201e38a0ea97b4cd4c39.tar.gz |
Substantial rewrite of bxe(4) to add support for the BCM57712 and
BCM578XX controllers.
Approved by: re
MFC after: 4 weeks
Diffstat (limited to 'sys/modules/bxe/Makefile')
-rw-r--r-- | sys/modules/bxe/Makefile | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/sys/modules/bxe/Makefile b/sys/modules/bxe/Makefile index af9c3ea..021b15d 100644 --- a/sys/modules/bxe/Makefile +++ b/sys/modules/bxe/Makefile @@ -2,12 +2,17 @@ BXE = ${.CURDIR}/../../dev/bxe .PATH: ${BXE} -KMOD= if_bxe -SRCS = opt_bxe.h device_if.h bus_if.h pci_if.h -SRCS += if_bxe.c bxe_link.c +KMOD = if_bxe +SRCS = device_if.h bus_if.h pci_if.h +SRCS += bxe.c \ + bxe_stats.c \ + bxe_debug.c \ + bxe_elink.c \ + ecore_sp.c \ + 57710_init_values.c \ + 57711_init_values.c \ + 57712_init_values.c -CFLAGS += -I${BXE} -DBXE_TASK -#CFLAGS += -DBXE_DEBUG -#CFLAGS += -DBXE_NVRAM_WRITE_SUPPORT +CFLAGS += -I${BXE} .include <bsd.kmod.mk> |