cvs commit: src/etc devd.conf src/sys/modules Makefile
 src/sys/modules/vge Makefile src/sys/dev/vge if_vge.c if_vgereg.h
 if_vgevar.h src/sys/dev/mii ciphy.c ciphyreg.h miidevs
 src/sys/conf files src/sys/i386/conf GENERIC src/sys/pc98/conf ...
    Bill Paul 
    wpaul at FreeBSD.org
       
    Fri Sep 10 13:57:47 PDT 2004
    
    
  
wpaul       2004-09-10 20:57:46 UTC
  FreeBSD src repository
  Modified files:
    etc                  devd.conf 
    sys/modules          Makefile 
    sys/dev/mii          miidevs 
    sys/conf             files 
    sys/i386/conf        GENERIC 
    sys/pc98/conf        GENERIC 
    sys/amd64/conf       GENERIC 
    usr.sbin/sysinstall  devices.c 
  Added files:
    sys/modules/vge      Makefile 
    sys/dev/vge          if_vge.c if_vgereg.h if_vgevar.h 
    sys/dev/mii          ciphy.c ciphyreg.h 
  Log:
  Add device driver support for the VIA Networking Technologies
  VT6122 gigabit ethernet chip and integrated 10/100/1000 copper PHY.
  The vge driver has been added to GENERIC for i386, pc98 and amd64,
  but not to sparc or ia64 since I don't have the ability to test
  it there. The vge(4) driver supports VLANs, checksum offload and
  jumbo frames.
  
  Also added the lge(4) and nge(4) drivers to GENERIC for i386 and
  pc98 since I was in the neighborhood. There's no reason to leave them
  out anymore.
  
  Revision  Changes    Path
  1.17      +2 -1      src/etc/devd.conf
  1.424     +3 -0      src/sys/amd64/conf/GENERIC
  1.952     +2 -0      src/sys/conf/files
  1.1       +433 -0    src/sys/dev/mii/ciphy.c (new)
  1.1       +351 -0    src/sys/dev/mii/ciphyreg.h (new)
  1.28      +6 -0      src/sys/dev/mii/miidevs
  1.1       +2445 -0   src/sys/dev/vge/if_vge.c (new)
  1.1       +697 -0    src/sys/dev/vge/if_vgereg.h (new)
  1.1       +174 -0    src/sys/dev/vge/if_vgevar.h (new)
  1.417     +3 -0      src/sys/i386/conf/GENERIC
  1.400     +1 -0      src/sys/modules/Makefile
  1.1       +8 -0      src/sys/modules/vge/Makefile (new)
  1.259     +3 -0      src/sys/pc98/conf/GENERIC
  1.157     +1 -0      src/usr.sbin/sysinstall/devices.c
    
    
More information about the cvs-all
mailing list