summaryrefslogtreecommitdiff
path: root/sys/modules/ste
AgeCommit message (Collapse)Author
2024-07-15Remove residual blank line at start of MakefileWarner Losh
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
2023-08-16sys: Remove $FreeBSD$: one-line sh patternWarner Losh
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2022-04-05mii: Add opt_platform.h to all miibus driversWarner Losh
miivar.h includes opt_platform.h. Make sure all the drivers that use the miibus_if.h interface file have opt_platform.h as well. While some of these may not, strictly speaking, need it, it's easier to include it universally for miibus. Sponsored by: Netflix
2017-03-04sys/modules: normalize .CURDIR-relative paths to SRCTOPEnji Cooper
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314651
2008-08-14Move the ste driver from sys/pci to sys/dev/ste.Warner Losh
Notes: svn path=/head/; revision=181739
2005-09-27Remove bridge(4) from the tree. if_bridge(4) is a full functionalMax Laier
replacement and has additional features which make it superior. Discussed on: -arch Reviewed by: thompsa X-MFC-after: never (RELENG_6 as transition period) Notes: svn path=/head/; revision=150636
2001-01-06Use a consistent style and one much closer to the rest of /usr/srcDavid E. O'Brien
Notes: svn path=/head/; revision=70711
2000-05-27Use .include <bsd.kmod.mk> to get to ../../*/conf/kmod.mk instead ofPeter Wemm
encoding the relative path. Notes: svn path=/head/; revision=60966
2000-05-04Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk.Peter Wemm
This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. This might also make it easier to build 5.x kernels on 4.0 boxes etc, assuming gensetdefs and config(8) are updated. Notes: svn path=/head/; revision=59951
2000-05-01Zap KMODDEPS linePeter Wemm
Notes: svn path=/head/; revision=59865
2000-01-28Add ${DEBUG_FLAGS} to CFLAGS in bsd.kmod.mk, not in scattered moduleBruce Evans
makefiles. Bad examples in fxp/Makefile keep getting copied to new makefiles. Notes: svn path=/head/; revision=56735
1999-11-28Removed special rules for building and cleaning device interface filesBruce Evans
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
1999-09-27Zap some unused echo "#define NFOO 1" > foo.h style defunct stuff.Peter Wemm
Notes: svn path=/head/; revision=51712
1999-09-27Don't generate 'bpf.h' since it's not used.Peter Wemm
Notes: svn path=/head/; revision=51704
1999-09-20Change the name of the installed KLM to contain a leading "if_".David E. O'Brien
Except for miibus which is now installed as miibus.ko. Discussed by: msmith, peter, and wpaul Notes: svn path=/head/; revision=51443
1999-08-28$Id$ -> $FreeBSD$Peter Wemm
Notes: svn path=/head/; revision=50477
1999-08-21This commit adds device driver support for the Sundance Technologies ST201Bill Paul
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. Notes: svn path=/head/; revision=50128