Author: jhb
Date: Fri Aug 19 22:27:14 2016
New Revision: 304506
URL: https://svnweb.freebsd.org/changeset/base/304506

Log:
  Remove the wl(4) driver and wlconfig(8) utility.
  
  The wl(4) driver supports pre-802.11 PCCard wireless adapters that
  are slower than 802.11b.  They do not work with any of the 802.11
  framework and the driver hasn't been reported to actually work in a
  long time.
  
  Relnotes:     yes

Deleted:
  head/share/man/man4/man4.i386/wl.4
  head/sys/dev/wl/
  head/sys/modules/wl/
  head/tools/kerneldoc/subsys/Doxyfile-dev_wl
  head/usr.sbin/wlconfig/
Modified:
  head/ObsoleteFiles.inc
  head/release/doc/en_US.ISO8859-1/hardware/article.xml
  head/share/man/man4/man4.i386/Makefile
  head/sys/conf/files
  head/sys/conf/options
  head/sys/i386/conf/NOTES
  head/sys/modules/Makefile
  head/targets/pseudo/userland/Makefile.depend
  head/tools/build/mk/OptionalObsoleteFiles.inc
  head/usr.sbin/Makefile.i386

Modified: head/ObsoleteFiles.inc
==============================================================================
--- head/ObsoleteFiles.inc      Fri Aug 19 22:13:01 2016        (r304505)
+++ head/ObsoleteFiles.inc      Fri Aug 19 22:27:14 2016        (r304506)
@@ -38,6 +38,10 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 20160819: Remove wl(4) and wlconfig(8)
+OLD_FILES+=usr/share/man/man4/i386/wl.4.gz
+OLD_FILES+=usr/sbin/wlconfig
+OLD_FILES+=usr/share/man/man8/i386/wlconfig.8.gz
 # 20160819: Remove si(4) and sicontrol(8)
 OLD_FILES+=usr/share/man/man4/si.4.gz
 OLD_FILES+=usr/sbin/sicontrol

Modified: head/release/doc/en_US.ISO8859-1/hardware/article.xml
==============================================================================
--- head/release/doc/en_US.ISO8859-1/hardware/article.xml       Fri Aug 19 
22:13:01 2016        (r304505)
+++ head/release/doc/en_US.ISO8859-1/hardware/article.xml       Fri Aug 19 
22:27:14 2016        (r304506)
@@ -1023,9 +1023,6 @@
        Intersil PRISM-2.5, Intersil Prism-3, and Symbol Spectrum24
        chipsets (&man.wi.4; driver)</para>
 
-      <para>[&arch.i386;] NCR / AT&amp;T / Lucent Technologies WaveLan
-       T1-speed ISA/radio LAN cards (&man.wl.4; driver)</para>
-
       <para>[&arch.i386;, &arch.amd64;] Intel PRO/Wireless 3945ABG
        MiniPCI network adapters (&man.wpi.4; driver)</para>
 

Modified: head/share/man/man4/man4.i386/Makefile
==============================================================================
--- head/share/man/man4/man4.i386/Makefile      Fri Aug 19 22:13:01 2016        
(r304505)
+++ head/share/man/man4/man4.i386/Makefile      Fri Aug 19 22:27:14 2016        
(r304506)
@@ -31,8 +31,7 @@ MAN=  aic.4 \
        streams.4 \
        svr4.4 \
        vpd.4 \
-       vx.4 \
-       wl.4
+       vx.4
 
 MLINKS=        CPU_ELAN.4 CPU_SOEKRIS.4
 MLINKS+=pae.4 PAE.4

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files Fri Aug 19 22:13:01 2016        (r304505)
+++ head/sys/conf/files Fri Aug 19 22:27:14 2016        (r304506)
@@ -2933,7 +2933,6 @@ dev/wb/if_wb.c                    optional wb pci
 dev/wi/if_wi.c                 optional wi
 dev/wi/if_wi_pccard.c          optional wi pccard
 dev/wi/if_wi_pci.c             optional wi pci
-dev/wl/if_wl.c                 optional wl isa
 dev/wpi/if_wpi.c               optional wpi pci
 wpifw.c                        optional wpifw                                  
\
        compile-with    "${AWK} -f $S/tools/fw_stub.awk wpi.fw:wpifw:153229 
-mwpi -c${.TARGET}" \

Modified: head/sys/conf/options
==============================================================================
--- head/sys/conf/options       Fri Aug 19 22:13:01 2016        (r304505)
+++ head/sys/conf/options       Fri Aug 19 22:27:14 2016        (r304506)
@@ -218,8 +218,6 @@ SW_WATCHDOG opt_watchdog.h
 TURNSTILE_PROFILING
 UMTX_PROFILING
 VERBOSE_SYSINIT
-WLCACHE                opt_wavelan.h
-WLDEBUG                opt_wavelan.h
 
 # POSIX kernel options
 P1003_1B_MQUEUE                        opt_posix.h

Modified: head/sys/i386/conf/NOTES
==============================================================================
--- head/sys/i386/conf/NOTES    Fri Aug 19 22:13:01 2016        (r304505)
+++ head/sys/i386/conf/NOTES    Fri Aug 19 22:27:14 2016        (r304506)
@@ -648,11 +648,6 @@ hint.sbni.0.port="0x210"
 hint.sbni.0.irq="0xefdead"
 hint.sbni.0.flags="0"
 device         vmx             # VMware VMXNET3 Ethernet
-device         wl
-hint.wl.0.at="isa"
-hint.wl.0.port="0x300"
-options        WLCACHE         # enables the signal-strength cache
-options        WLDEBUG         # enables verbose debugging output
 device         wpi             # Intel 3945ABG wireless NICs.
 
 # IEEE 802.11 adapter firmware modules

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile   Fri Aug 19 22:13:01 2016        (r304505)
+++ head/sys/modules/Makefile   Fri Aug 19 22:27:14 2016        (r304506)
@@ -391,7 +391,6 @@ SUBDIR=     \
        wb \
        ${_wbwd} \
        ${_wi} \
-       ${_wl} \
        wlan \
        wlan_acl \
        wlan_amrr \
@@ -728,7 +727,6 @@ _ctau=              ctau
 .endif
 _dpt=          dpt
 _ex=           ex
-_wl=           wl
 .elif ${MACHINE} == "pc98"
 _canbepm=      canbepm
 _canbus=       canbus

Modified: head/targets/pseudo/userland/Makefile.depend
==============================================================================
--- head/targets/pseudo/userland/Makefile.depend        Fri Aug 19 22:13:01 
2016        (r304505)
+++ head/targets/pseudo/userland/Makefile.depend        Fri Aug 19 22:27:14 
2016        (r304506)
@@ -865,8 +865,7 @@ DIRDEPS.i386= \
        usr.sbin/spkrtest \
        usr.sbin/zzz \
        usr.sbin/acpi \
-       usr.sbin/boot0cfg \
-       usr.sbin/wlconfig
+       usr.sbin/boot0cfg
 
 DIRDEPS.arm64= \
        usr.sbin/acpi \

Modified: head/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- head/tools/build/mk/OptionalObsoleteFiles.inc       Fri Aug 19 22:13:01 
2016        (r304505)
+++ head/tools/build/mk/OptionalObsoleteFiles.inc       Fri Aug 19 22:27:14 
2016        (r304506)
@@ -8744,9 +8744,6 @@ OLD_FILES+=usr/sbin/hostapd
 OLD_FILES+=usr/sbin/hostapd_cli
 OLD_FILES+=usr/sbin/ndis_events
 OLD_FILES+=usr/sbin/wlandebug
-.if ${TARGET_ARCH} == "i386"
-OLD_FILES+=usr/sbin/wlconfig
-.endif
 OLD_FILES+=usr/sbin/wpa_cli
 OLD_FILES+=usr/sbin/wpa_passphrase
 OLD_FILES+=usr/sbin/wpa_supplicant
@@ -8761,9 +8758,6 @@ OLD_FILES+=usr/share/man/man5/wpa_suppli
 OLD_FILES+=usr/share/man/man8/ancontrol.8.gz
 OLD_FILES+=usr/share/man/man8/hostapd.8.gz
 OLD_FILES+=usr/share/man/man8/hostapd_cli.8.gz
-.if ${TARGET_ARCH} == "i386"
-OLD_FILES+=usr/share/man/man8/i386/wlconfig.8.gz
-.endif
 OLD_FILES+=usr/share/man/man8/ndis_events.8.gz
 OLD_FILES+=usr/share/man/man8/wlandebug.8.gz
 OLD_FILES+=usr/share/man/man8/wpa_cli.8.gz

Modified: head/usr.sbin/Makefile.i386
==============================================================================
--- head/usr.sbin/Makefile.i386 Fri Aug 19 22:13:01 2016        (r304505)
+++ head/usr.sbin/Makefile.i386 Fri Aug 19 22:27:14 2016        (r304506)
@@ -29,9 +29,6 @@ SUBDIR+=      boot0cfg
 .if ${MK_HYPERV} != "no"
 SUBDIR+=       hyperv
 .endif
-.if ${MK_WIRELESS} != "no"
-SUBDIR+=       wlconfig
-.endif
 .elif ${MACHINE} == "pc98"
 SUBDIR+=       boot98cfg
 .endif
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to