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

Warner Losh imp at FreeBSD.org
Wed Feb 9 20:03:41 GMT 2005


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


More information about the cvs-src mailing list