aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/mx/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Add the if_dc driver and remove all of the al, ax, dm, pn and mx driversBill Paul1999-12-041-8/+0
| | | | | | | | | | | which it replaces. The new driver supports all of the chips supported by the ones it replaces, as well as many DEC/Intel 21143 10/100 cards. This also completes my quest to convert things to miibus and add Alpha support. Notes: svn path=/head/; revision=54134
* Removed special rules for building and cleaning device interface filesBruce Evans1999-11-281-18/+1
| | | | | | | | and empty options files. The rules are now generated automatically in bsd.kmod.mk. Cleaned up related things ($S and ${CLEANFILES}). Notes: svn path=/head/; revision=53846
* Convert the mx driver to miibus.Bill Paul1999-10-161-2/+5
| | | | | | | | | | | | | | | | | In order to make this work, I created a pseudo-PHY driver to deal with Macronix chips that use the built-in NWAY support and symbol mode port. This is actually all of them, with the exception of the original MX98713 which presents its NWAY support via the MII serial interface. The mxphy driver actually manipulates the controller registers directly rather than using the miibus_readreg()/miibus_writereg() bus interface since there are no MII registers to read. The mx driver itself pretends that the NWAY interface is a PHY locayed at MII address 31 for the sole purpose of allowing the mxphy_probe() routine to know when it needs to attach to a host controller. Notes: svn path=/head/; revision=52282
* Zap some unused echo "#define NFOO 1" > foo.h style defunct stuff.Peter Wemm1999-09-271-5/+2
| | | | Notes: svn path=/head/; revision=51712
* Don't generate 'bpf.h' since it's not used.Peter Wemm1999-09-271-5/+2
| | | | Notes: svn path=/head/; revision=51704
* Change the name of the installed KLM to contain a leading "if_".David E. O'Brien1999-09-201-1/+1
| | | | | | | | | Except for miibus which is now installed as miibus.ko. Discussed by: msmith, peter, and wpaul Notes: svn path=/head/; revision=51443
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Convert the VIA Rhine driver to newbus and set it up to be compiled asBill Paul1999-08-101-2/+2
| | | | | | | | | | | | | a module. Also modified the code to work on FreeBSD/alpha and added device vr0 to the alpha GENERIC config. While I was in the neighborhood, I noticed that I was still using #define NFPX 1 in all of the Makefiles that I'd copied from the fxp module. I don't really use #define Nfoo X so it didn't matter, but I decided to customize this correctly anyway. Notes: svn path=/head/; revision=49610
* Add mx and ax modules for the Macronix and ASIX drivers and update theBill Paul1999-07-241-0/+28
modules Makefile so they get built. Notes: svn path=/head/; revision=49067