Date: Sat, 20 Aug 2016 00:49:30 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r304513 - in head: . share/man/man4/man4.i386 sys/conf sys/dev/ie sys/i386/conf sys/modules sys/modules/ie sys/pc98/conf Message-ID: <201608200049.u7K0nUYd084685@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Sat Aug 20 00:49:29 2016 New Revision: 304513 URL: https://svnweb.freebsd.org/changeset/base/304513 Log: Remove the ie(4) driver for Intel 82586 ISA Ethernet adapters. This driver only supports 10Mb Ethernet using PIO (the hardware supports DMA, but the driver only does PIO). There are not any PCCard adapters supported by this driver, only ISA cards. In addition, it does not use bus_space but instead uses bcopy with volatile pointers triggering a host of warnings. (if_ie.c is one of 3 files always built with -Wno-error) Relnotes: yes Deleted: head/share/man/man4/man4.i386/ie.4 head/sys/dev/ie/ head/sys/modules/ie/ Modified: head/ObsoleteFiles.inc head/share/man/man4/man4.i386/Makefile head/sys/conf/files head/sys/i386/conf/NOTES head/sys/modules/Makefile head/sys/pc98/conf/NOTES Modified: head/ObsoleteFiles.inc ============================================================================== --- head/ObsoleteFiles.inc Sat Aug 20 00:34:19 2016 (r304512) +++ head/ObsoleteFiles.inc Sat Aug 20 00:49:29 2016 (r304513) @@ -38,6 +38,8 @@ # xargs -n1 | sort | uniq -d; # done +# 20160819: Remove ie(4) +OLD_FILES+=usr/share/man/man4/i386/ie.4.gz # 20160819: Remove spic(4) OLD_FILES+=usr/share/man/man4/spic.4.gz # 20160819: Remove wl(4) and wlconfig(8) Modified: head/share/man/man4/man4.i386/Makefile ============================================================================== --- head/share/man/man4/man4.i386/Makefile Sat Aug 20 00:34:19 2016 (r304512) +++ head/share/man/man4/man4.i386/Makefile Sat Aug 20 00:49:29 2016 (r304513) @@ -16,7 +16,6 @@ MAN= aic.4 \ fe.4 \ glxiic.4 \ glxsb.4 \ - ie.4 \ longrun.4 \ mse.4 \ npx.4 \ Modified: head/sys/conf/files ============================================================================== --- head/sys/conf/files Sat Aug 20 00:34:19 2016 (r304512) +++ head/sys/conf/files Sat Aug 20 00:49:29 2016 (r304513) @@ -1579,8 +1579,6 @@ dev/ida/ida.c optional ida dev/ida/ida_disk.c optional ida dev/ida/ida_eisa.c optional ida eisa dev/ida/ida_pci.c optional ida pci -dev/ie/if_ie.c optional ie isa nowerror -dev/ie/if_ie_isa.c optional ie isa dev/iicbus/ad7418.c optional ad7418 dev/iicbus/ds1307.c optional ds1307 dev/iicbus/ds133x.c optional ds133x Modified: head/sys/i386/conf/NOTES ============================================================================== --- head/sys/i386/conf/NOTES Sat Aug 20 00:34:19 2016 (r304512) +++ head/sys/i386/conf/NOTES Sat Aug 20 00:49:29 2016 (r304513) @@ -624,12 +624,6 @@ hint.ed.0.at="isa" hint.ed.0.port="0x280" hint.ed.0.irq="5" hint.ed.0.maddr="0xd8000" -device ie # EtherExpress 8/16, 3C507, StarLAN 10 etc. -# Hints only required for Starlan -hint.ie.2.at="isa" -hint.ie.2.port="0x300" -hint.ie.2.irq="5" -hint.ie.2.maddr="0xd0000" device ipw # Intel 2100 wireless NICs. device iwi # Intel 2200BG/2225BG/2915ABG wireless NICs. device iwn # Intel 4965/1000/5000/6000 wireless NICs. Modified: head/sys/modules/Makefile ============================================================================== --- head/sys/modules/Makefile Sat Aug 20 00:34:19 2016 (r304512) +++ head/sys/modules/Makefile Sat Aug 20 00:49:29 2016 (r304513) @@ -141,7 +141,6 @@ SUBDIR= \ ${_ibcs2} \ ${_ichwd} \ ${_ida} \ - ${_ie} \ if_bridge \ if_disc \ if_edsc \ @@ -705,7 +704,6 @@ _elink= elink _glxiic= glxiic _glxsb= glxsb #_ibcs2= ibcs2 -_ie= ie _mse= mse _ncr= ncr _ncv= ncv Modified: head/sys/pc98/conf/NOTES ============================================================================== --- head/sys/pc98/conf/NOTES Sat Aug 20 00:34:19 2016 (r304512) +++ head/sys/pc98/conf/NOTES Sat Aug 20 00:49:29 2016 (r304513) @@ -390,11 +390,6 @@ hint.ed.0.at="isa" hint.ed.0.port="0x280" hint.ed.0.irq="5" hint.ed.0.maddr="0xd8000" -device ie # Hints only required for Starlan -hint.ie.2.at="isa" -hint.ie.2.port="0x300" -hint.ie.2.irq="5" -hint.ie.2.maddr="0xd0000" #device le # Hint for the PC98-only C-NET(98)S C-bus front-end of le(4). hint.le.0.at="isa"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608200049.u7K0nUYd084685>