23e4757cd7
PCI fast ethernet controller. Currently, the only card I know that uses this chip is the D-Link DFE-550TX. (Don't ask me where to buy these: the only cards I have are samples sent to me by D-Link.) This driver is the first to make use of the miibus code once I'm sure it all works together nicely, I'll start converting the other drivers. The Sundance chip is a clone of the 3Com 3c90x Etherlink XL design only with its own register layout. Support is provided for ifmedia, hardware multicast filtering, bridging and promiscuous mode.
34 lines
851 B
Makefile
34 lines
851 B
Makefile
# $Id: Makefile,v 1.1 1999/07/24 20:55:04 wpaul Exp $
|
|
|
|
S = ${.CURDIR}/../..
|
|
.PATH: $S/pci
|
|
KMOD = ste
|
|
SRCS = if_ste.c ste.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h
|
|
SRCS += miibus_if.h
|
|
CLEANFILES += ste.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h
|
|
CLEANFILES += miibus_if.h
|
|
CFLAGS += ${DEBUG_FLAGS}
|
|
|
|
ste.h:
|
|
echo "#define NSTE 1" > ste.h
|
|
|
|
bpf.h:
|
|
echo "#define NBPF 1" > bpf.h
|
|
|
|
opt_bdg.h:
|
|
touch opt_bdg.h
|
|
|
|
device_if.h: $S/kern/makedevops.pl $S/kern/device_if.m
|
|
perl $S/kern/makedevops.pl -h $S/kern/device_if.m
|
|
|
|
bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m
|
|
perl $S/kern/makedevops.pl -h $S/kern/bus_if.m
|
|
|
|
pci_if.h: $S/kern/makedevops.pl $S/pci/pci_if.m
|
|
perl $S/kern/makedevops.pl -h $S/pci/pci_if.m
|
|
|
|
miibus_if.h: $S/kern/makedevops.pl $S/dev/mii/miibus_if.m
|
|
perl $S/kern/makedevops.pl -h $S/dev/mii/miibus_if.m
|
|
|
|
.include <bsd.kmod.mk>
|