ce4946daa5
and DP83821 gigabit ethernet MAC chips and the NatSemi DP83861 10/100/1000 copper PHY. There are a whole bunch of very low cost cards available with this chipset selling for $150USD or less. This includes the SMC9462TX, D-Link DGE-500T, Asante GigaNIX 1000TA and 1000TPC, and a couple cards from Addtron. This chip supports TCP/IP checksum offload, VLAN tagging/insertion. 2048-bit multicast filter, jumbograms and has 8K TX and 32K RX FIFOs. I have not done serious performance testing with this driver. I know it works, and I want it under CVS control so I can keep tabs on it. Note that there's no serious mutex stuff in here yet either: I need to talk more with jhb to figure out the right way to do this. That said, I don't think there will be any problems. This driver should also work on the alpha. It's not turned on in GENERIC.
38 lines
1.0 KiB
Makefile
38 lines
1.0 KiB
Makefile
# $FreeBSD$
|
|
|
|
# XXX present but broken: ip_mroute_mod
|
|
|
|
.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT)
|
|
_random= random
|
|
.endif
|
|
|
|
SUBDIR= 3dfx accf_data accf_http agp aha amr an aue \
|
|
cam ccd cd9660 coda cue dc de dgm digi ed fdesc fxp if_disc if_ef \
|
|
if_ppp if_sl if_tap if_tun ip6fw ipfilter ipfw ispfw joy kue \
|
|
libmchain linux lnc md mfs mii mlx msdos ncp netgraph nfs nge ntfs \
|
|
nullfs nwfs pcn portal procfs ${_random} \
|
|
rl rp sf sis sk sn sound sppp ste sym syscons sysvipc ti tl twe tx \
|
|
udbp ugen uhid ukbd ulpt umapfs umass umodem ums union urio usb \
|
|
uscanner \
|
|
vinum vpo vr vx wb wx xl
|
|
|
|
# XXX some of these can move to the general case when de-i386'ed
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SUBDIR+=aac aic ar asr atspeaker bktr coff el fpu gnufpu ibcs2 linprocfs mly \
|
|
pecoff ray s3 smbfs splash sr streams vesa wi
|
|
.endif
|
|
|
|
.if ${MACHINE} == "pc98"
|
|
SUBDIR+=snc
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
SUBDIR+=osf1
|
|
.endif
|
|
|
|
.if defined(MODULES_OVERRIDE)
|
|
SUBDIR=${MODULES_OVERRIDE}
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|