From owner-cvs-all@FreeBSD.ORG Wed Feb 9 20:03:40 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D905216A4CE; Wed, 9 Feb 2005 20:03:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98B8C43D39; Wed, 9 Feb 2005 20:03:40 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j19K3ex4008706; Wed, 9 Feb 2005 20:03:40 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j19K3eQU008705; Wed, 9 Feb 2005 20:03:40 GMT (envelope-from imp) Message-Id: <200502092003.j19K3eQU008705@repoman.freebsd.org> From: Warner Losh Date: Wed, 9 Feb 2005 20:03:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/conf NOTES src/sys/conf files files.alpha files.i386 files.pc98 options src/sys/dev/ed if_ed.c if_ed_3c503.c if_ed_hpp.c if_ed_isa.c if_ed_novell.c if_ed_sic.c if_ed_wd80x3.c if_edvar.h src/sys/modules/ed Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Feb 2005 20:03:41 -0000 imp 2005-02-09 20:03:40 UTC FreeBSD src repository Modified files: sys/i386/conf NOTES sys/conf files files.alpha files.i386 files.pc98 options sys/dev/ed if_ed.c if_ed_isa.c if_edvar.h sys/modules/ed Makefile Added files: sys/dev/ed if_ed_3c503.c if_ed_hpp.c if_ed_novell.c if_ed_sic.c if_ed_wd80x3.c Log: Break out obscure ISA cards into their own files, as well as ne2000 and wd80x3 support. Make the obscure ISA cards optional, and add those options to NOTES on i386 (note: the ifdef around the whole code is for module building). Tweak pc98 ed support to include wd80x3 too. Add goo for alpha too. The affected cards are the 3Com 3C503, HP LAN+ and SIC (whatever that is). I couldn't find any of these for sale on ebay, so they are untested. If you have one of these cards, and send it to me, I'll ensure that you have no future problems with it... Minor cleanups as well by using functions rather than cut and paste code for some probing operations (where the function call overhead is lost in the noise). Remove use of kvtop, since they aren't required anymore. This driver needs to get its memory mapped act together, however, and use bus space. It doesn't right now. This reduces the size of if_ed.ko from about 51k to 33k on my laptop. Revision Changes Path 1.993 +1 -0 src/sys/conf/files 1.116 +4 -0 src/sys/conf/files.alpha 1.516 +4 -0 src/sys/conf/files.i386 1.316 +1 -0 src/sys/conf/files.pc98 1.492 +3 -0 src/sys/conf/options 1.244 +70 -1765 src/sys/dev/ed/if_ed.c 1.1 +341 -0 src/sys/dev/ed/if_ed_3c503.c (new) 1.1 +663 -0 src/sys/dev/ed/if_ed_hpp.c (new) 1.20 +8 -2 src/sys/dev/ed/if_ed_isa.c 1.1 +288 -0 src/sys/dev/ed/if_ed_novell.c (new) 1.1 +159 -0 src/sys/dev/ed/if_ed_sic.c (new) 1.1 +468 -0 src/sys/dev/ed/if_ed_wd80x3.c (new) 1.25 +6 -0 src/sys/dev/ed/if_edvar.h 1.1180 +3 -0 src/sys/i386/conf/NOTES 1.9 +2 -2 src/sys/modules/ed/Makefile