summaryrefslogtreecommitdiff
path: root/wlan-ng/files/wlanctl-ng
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-11-14 17:55:32 +0000
committerChris Larson <clarson@kergoth.com>2004-11-14 17:55:32 +0000
commit329ddd37ebb2c0f508744c0bfba70e02461ab67f (patch)
tree9acc96d084aadc254440b3613391bca29e1705f8 /wlan-ng/files/wlanctl-ng
parentdaf4fe097d2a69ed407d042e535dd0877adb4f86 (diff)
Merge openembedded@openembedded.bkbits.net:packages-devel
into handhelds.org:/home/kergoth/code/packages 2004/11/14 12:55:25-05:00 handhelds.org!kergoth Include scripts for wlan-ng: debian's apmd resume, debian's interfaces if-pre-up.d, debian's interfaces if-post-down.d 2004/11/14 12:54:49-05:00 handhelds.org!kergoth Add the steps necessary to bring up wireless on the SL6K to its wlan0 entry in interfaces. BKrev: 41979c14e-I76hv6xeTgd302NzWzew
Diffstat (limited to 'wlan-ng/files/wlanctl-ng')
-rw-r--r--wlan-ng/files/wlanctl-ng28
1 files changed, 0 insertions, 28 deletions
diff --git a/wlan-ng/files/wlanctl-ng b/wlan-ng/files/wlanctl-ng
deleted file mode 100644
index 3bd5b1376c..0000000000
--- a/wlan-ng/files/wlanctl-ng
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-modprobe usb_ohci_tc6393
-
-if test ! -d /dev/usb
-then
- mkdir -p /dev/usb
-fi
-if test ! -c /dev/usb/host_ohci
-then
- printf "*\tCreating /dev/usb/host_ohci node\n"
- mknod /dev/usb/host_ohci c 10 222
-fi
-
-case $0 in
-wlanup)
- printf "*\tStarting up wlan-ng interface\n"
- modprobe prism2_usb
- /sbin/usbctl on 1
- /etc/init.d/wlan start
- ;;
-wlandown)
- printf "*\tShutting down wlan-ng interface\n"
- /etc/init.d/wlan stop
- /sbin/usbctl off 1
- rmmod prism2_usb
- ;;
-esac