4a9af7d53f
NetFPGA-10G Embedded CPU Ethernet Core. The current version operates on a simple PIO based interface connected to a NetFPGA-10G port. To avoid confusion: this driver operates on a CPU running on the FPGA, e.g. BERI/mips, and is not suited for the PCI host interface. MFC after: 1 week Relnotes: yes Sponsored by: DARPA/AFRL
17 lines
298 B
Makefile
17 lines
298 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../../dev/netfpga10g/nf10bmac
|
|
|
|
KMOD= if_nf10bmac
|
|
SRCS= if_nf10bmac.c
|
|
SRCS+= device_if.h bus_if.h pci_if.h
|
|
SRCS+= opt_device_polling.h
|
|
|
|
.if ${MACHINE_CPUARCH} == "mips"
|
|
SRCS+= if_nf10bmac_fdt.c ofw_bus_if.h
|
|
.endif
|
|
|
|
CFLAGS+= -DDEVICE_POLLING
|
|
|
|
.include <bsd.kmod.mk>
|