diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/wlan-ng/files/wlan.agent | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/wlan-ng/files/wlan.agent')
-rw-r--r-- | packages/wlan-ng/files/wlan.agent | 107 |
1 files changed, 0 insertions, 107 deletions
diff --git a/packages/wlan-ng/files/wlan.agent b/packages/wlan-ng/files/wlan.agent deleted file mode 100644 index 945d646984..0000000000 --- a/packages/wlan-ng/files/wlan.agent +++ /dev/null @@ -1,107 +0,0 @@ -#!/bin/sh -# -# p80211/wlan hotplug policy agent. -# -# wlan hotplug params include: -# -# ACTION=%s [register|remove|shutdown|startup|suspend|resume] -# INTERFACE=%s -# NSDNAME=%s -# - -cd /etc/hotplug -# must have ./ here or busybox shell barfs -. ./hotplug.functions - -#DEBUG=yes export DEBUG - -if [ "$INTERFACE" = "" ]; then - mesg Bad WLAN invocation: \$INTERFACE is not set - exit 1 -fi - -if [ "$NSDNAME" = "" ]; then - mesg Bad WLAN invocation: \$NSDNAME is not set - exit 1 -fi - -debug_mesg WLAN $ACTION on $INTERFACE \($NSDNAME\) - -if [ "$NSDNAME" = "prism2_cs" ] ; then - mesg "WLAN Hotplug bypassed for pcmcia" - exit 0 -fi - -# load up the shared scripts -if [ ! -f /etc/wlan/shared ] ; then - mesg "/etc/wlan/shared not present, aborting" - exit 1 -fi - -ECHO=mesg -. /etc/wlan/shared - -case $ACTION in -'register'|'resume') - eval 'WLAN_ENABLE=$ENABLE_'$INTERFACE - if ! is_true $WLAN_ENABLE ; then - mesg "WLAN $ACTION - interface $INTERFACE not enabled, aborting" - exit 1 - fi - debug_mesg WLAN $INTERFACE registered. - wlan_bring_it_up $INTERFACE - if [ $? = 0 ] ; then - mesg WLAN $INTERFACE brought up successfully. - if [ -x /etc/wlan/network ] ; then - mesg "WLAN bringing up layer 3+ with /etc/wlan/network" - /etc/wlan/network start $INTERFACE - elif [ -x /etc/wlan/pre-ifup ] ; then - # pre-ifup is presumed to call ifup if it - # wants to...it may choose to skip it. - mesg "WLAN bringing up layer 3+ with /etc/wlan/pre-ifup" - /etc/wlan/pre-ifup $INTERFACE - else - mesg "WLAN bringing up layer 3+ with /sbin/ifup" - /sbin/ifup $INTERFACE - fi - else - mesg WLAN Could not bring up $INTERFACE - exit 1 - fi - # eventually invoke net.agent on $INTERFACE w/ REGISTER -;; -'remove'|'suspend') - debug_mesg WLAN $INTERFACE removed. - eval 'WLAN_ENABLE=$ENABLE_'$INTERFACE - if ! is_true $WLAN_ENABLE ; then - mesg "WLAN $ACTION - interface $INTERFACE not enabled, aborting" - exit 1 - fi - if [ -x /etc/wlan/network ] ; then - mesg "WLAN taking down layer 3+ with /etc/wlan/network" - /etc/wlan/network stop $INTERFACE - elif [ -x /etc/wlan/post-ifdown ] ; then - # post-ifdown is presumed to call ifdown if it - # wants to...it may choose to skip it. - mesg "WLAN taking down layer 3+ with /etc/wlan/post-ifdown" - /etc/wlan/post-ifdown $INTERFACE - else - mesg "WLAN taking down layer 3+ with /sbin/ifdown" - /sbin/ifdown $INTERFACE - fi - wlan_disable $INTERFACE -;; -'startup') - # kick off wland. - debug_mesg WLAN p80211 starting! - start_wland -;; -'shutdown') - debug_mesg WLAN p80211 shutting down! - stop_wland -;; -*) - debug_mesg WLAN $ACTION event not supported - exit 1 ;; - -esac |