diff options
author | davidch <davidch@FreeBSD.org> | 2011-03-14 22:42:41 +0000 |
---|---|---|
committer | davidch <davidch@FreeBSD.org> | 2011-03-14 22:42:41 +0000 |
commit | 4cf0ebe1b2d91367d1a1ba4fc90558f26893a551 (patch) | |
tree | 93b125793a74340c54ffb12d2748f987da9d9bc1 /sys/modules | |
parent | 36e15e1609c7110814c49d7ef7893cf4a66c719b (diff) | |
download | FreeBSD-src-4cf0ebe1b2d91367d1a1ba4fc90558f26893a551.zip FreeBSD-src-4cf0ebe1b2d91367d1a1ba4fc90558f26893a551.tar.gz |
- Initial release of bxe(4) to support Broadcom NetXtreme II 10GbE.
(BCM57710, BCM57711, BCM57711E)
MFC after: One month
Diffstat (limited to 'sys/modules')
-rwxr-xr-x | sys/modules/bxe/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/modules/bxe/Makefile b/sys/modules/bxe/Makefile new file mode 100755 index 0000000..c299480 --- /dev/null +++ b/sys/modules/bxe/Makefile @@ -0,0 +1,13 @@ +# $FreeBSD$ +BXE = ${.CURDIR}/../../dev/bxe +.PATH: ${BXE} + +KMOD= if_bxe +SRCS = opt_bxe.h device_if.h bus_if.h pci_if.h miibus_if.h miidevs.h +SRCS += if_bxe.c bxe_link.c + +CFLAGS += -I${BXE} -DBXE_TASK +#CFLAGS += -DBXE_DEBUG +#CFLAGS += -DBXE_NVRAM_WRITE_SUPPORT + +.include <bsd.kmod.mk> |