diff options
author | James Meyer <james.meyer@operamail.com> | 2009-03-14 04:07:05 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-03-14 04:07:05 (GMT) |
commit | c2941a012cbea19073e72af561b37a1255a1fe6c (patch) | |
tree | 168850edb01eea2168329eada8f2025bf3f21e23 /abs/core-testing/wlan-ng26-utils-svn/wlan | |
parent | a501f7114b788b2879bab105ed4dcd7ed6a94f39 (diff) | |
download | linhes_pkgbuild-c2941a012cbea19073e72af561b37a1255a1fe6c.zip linhes_pkgbuild-c2941a012cbea19073e72af561b37a1255a1fe6c.tar.gz linhes_pkgbuild-c2941a012cbea19073e72af561b37a1255a1fe6c.tar.bz2 |
Remove wlan-ng26 as the drivers are now in the kernel.
Diffstat (limited to 'abs/core-testing/wlan-ng26-utils-svn/wlan')
-rw-r--r-- | abs/core-testing/wlan-ng26-utils-svn/wlan | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/abs/core-testing/wlan-ng26-utils-svn/wlan b/abs/core-testing/wlan-ng26-utils-svn/wlan deleted file mode 100644 index 6b3252d..0000000 --- a/abs/core-testing/wlan-ng26-utils-svn/wlan +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh - -if [ ! -f /etc/wlan/shared ] ; then - echo "/etc/wlan/shared not present" - exit 0 -fi - -. /etc/wlan/shared -. /etc/rc.conf -. /etc/rc.d/functions - -case "$1" in - start) - # This will implicitly fire off wland via hotplug. - stat_busy "Starting WLAN Devices" - if ! $MODPROBE p80211; then - echo "Failed to load p80211.o." - exit 1 - fi - - # NOTE: We don't explicitly insmod the card driver here. The - # best thing to do is to specify an alias in /etc/modules.conf. - - for DEVICE in $WLAN_DEVICES; do - $MODPROBE $DEVICE - # if we don't have hotplug.. do things the old-fashioned way. - if [ $HAS_HOTPLUG = 'n' ] ; then - wlan_bring_it_up $DEVICE - fi - done - - # And hotplug will take care of the rest, namely device - # initialization and whatnot. - - add_daemon wlan - stat_done - - ;; - - stop) - stat_busy "Shutting Down WLAN Devices" - # Do a reset on each device to make sure none of them are still - # trying to generate interrupts. - for DEVICE in $WLAN_DEVICES; do - wlan_disable $DEVICE - ifconfig $DEVICE down - $MODPROBE -r $DEVICE - done - - # remove p80211, which will implictly kill wland. - $MODPROBE -r p80211 - - rm_daemon wlan - stat_done - ;; - - restart) - $0 stop - $0 start - EXITCODE=$? - ;; - - *) - echo "usage: $0 {start|stop|restart}" - ;; - -esac -exit 0 |