From c1fe1ae28e833cf74f590e714bd3af3e243ed4ae Mon Sep 17 00:00:00 2001 From: harti Date: Mon, 23 Jun 2003 14:46:12 +0000 Subject: This is a driver for Fore PCA200E cards that uses busdma and works on little endian and big endian and with 32 and 64 bit pointers. It already has the hooks to be used for HARP, NATM and ngATM. --- sys/modules/Makefile | 1 + sys/modules/fatm/Makefile | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 sys/modules/fatm/Makefile (limited to 'sys/modules') diff --git a/sys/modules/Makefile b/sys/modules/Makefile index e0aaf6d..5d9d89e 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -30,6 +30,7 @@ SUBDIR= accf_data \ digi \ dummynet \ en \ + fatm \ fdc \ fdescfs \ firewire \ diff --git a/sys/modules/fatm/Makefile b/sys/modules/fatm/Makefile new file mode 100644 index 0000000..f1c5940 --- /dev/null +++ b/sys/modules/fatm/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ +# +# Author: Harti Brandt +# +.PATH: ${.CURDIR}/../../dev/fatm + +KMOD= if_fatm +SRCS= if_fatm.c device_if.h bus_if.h pci_if.h opt_inet.h opt_natm.h + +# CFLAGS+= -DFATM_DEBUG=0 -DINVARIANT_SUPPORT -DINVARIANTS -g +# LDFLAGS+= -g + +opt_inet.h: + echo "#define INET 1" > opt_inet.h + +opt_natm.h: + echo "#define NATM 1" > opt_natm.h + +.include -- cgit v1.1