diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2010-11-25 13:48:07 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-02 05:24:51 -0800 |
commit | c5cfd67cdf177237c7e51834e502d8dc8e899e71 (patch) | |
tree | d02e57c416ec384e086a7ee14911f72ad99b9d4b /meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.3/init.sh | |
parent | 35793fdd7da312e644f2c7bab81b604128e3f2de (diff) | |
download | poky-c5cfd67cdf177237c7e51834e502d8dc8e899e71.tar.gz |
wpa-supplicant: Upgrade to version 0.7.3
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.3/init.sh')
-rw-r--r-- | meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.3/init.sh | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.3/init.sh b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.3/init.sh new file mode 100644 index 0000000000..bc7ee9184e --- /dev/null +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.3/init.sh | |||
@@ -0,0 +1,50 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | PATH=/sbin:/bin:/usr/sbin:/usr/bin | ||
4 | |||
5 | DAEMON=/usr/sbin/wpa_supplicant | ||
6 | CONFIG="/etc/wpa_supplicant.conf" | ||
7 | PNAME="wpa_supplicant" | ||
8 | |||
9 | # insane defaults | ||
10 | OPTIONS="" | ||
11 | |||
12 | test -f /etc/default/wpa && . /etc/default/wpa | ||
13 | |||
14 | if [ ! -f $CONFIG ]; then | ||
15 | echo "No configuration file found, not starting." | ||
16 | exit 1 | ||
17 | fi | ||
18 | |||
19 | test -f $DAEMON || exit 0 | ||
20 | |||
21 | case "$1" in | ||
22 | start) | ||
23 | echo -n "Starting wpa_supplicant: " | ||
24 | start-stop-daemon -S -b -x $DAEMON -- -Bw -c $CONFIG $OPTIONS >/dev/null | ||
25 | echo "done." | ||
26 | ;; | ||
27 | stop) | ||
28 | echo -n "Stopping wpa_supplicant: " | ||
29 | start-stop-daemon -K -n $PNAME >/dev/null | ||
30 | echo "done." | ||
31 | ;; | ||
32 | reload|force-reload) | ||
33 | echo -n "Reloading wpa_supplicant: " | ||
34 | killall -HUP $PNAME | ||
35 | echo "done." | ||
36 | ;; | ||
37 | restart) | ||
38 | echo -n "Restarting wpa_supplicant: " | ||
39 | start-stop-daemon -K -n $PNAME >/dev/null | ||
40 | sleep 1 | ||
41 | start-stop-daemon -S -b -x $DAEMON -- -Bw -c $CONFIG $OPTIONS >/dev/null | ||
42 | echo "done." | ||
43 | ;; | ||
44 | *) | ||
45 | echo "Usage: $0 {start|stop|restart|reload|force-reload}" >&2 | ||
46 | exit 1 | ||
47 | ;; | ||
48 | esac | ||
49 | |||
50 | exit 0 | ||