summaryrefslogtreecommitdiff
path: root/wlan-ng/files
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
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')
-rw-r--r--wlan-ng/files/post-down0
-rw-r--r--wlan-ng/files/pre-up0
-rw-r--r--wlan-ng/files/resume0
-rw-r--r--wlan-ng/files/sl6kwlanctl-ng31
-rw-r--r--wlan-ng/files/wlanctl-ng28
5 files changed, 0 insertions, 59 deletions
diff --git a/wlan-ng/files/post-down b/wlan-ng/files/post-down
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/wlan-ng/files/post-down
diff --git a/wlan-ng/files/pre-up b/wlan-ng/files/pre-up
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/wlan-ng/files/pre-up
diff --git a/wlan-ng/files/resume b/wlan-ng/files/resume
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/wlan-ng/files/resume
diff --git a/wlan-ng/files/sl6kwlanctl-ng b/wlan-ng/files/sl6kwlanctl-ng
deleted file mode 100644
index 377b9d4dc9..0000000000
--- a/wlan-ng/files/sl6kwlanctl-ng
+++ /dev/null
@@ -1,31 +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|/sbin/wlanup)
- printf "*\tStarting up wlan-ng interface\n"
- modprobe prism2_usb
- /sbin/usbctl on 1
- /etc/init.d/wlan start
- ;;
-wlandown|/sbin/wlandown)
- printf "*\tShutting down wlan-ng interface\n"
- /etc/init.d/wlan stop
- /sbin/usbctl off 1
- rmmod prism2_usb
- ;;
-*)
- printf "*\tUSAGE: $0\n"
- ;;
-esac
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