diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
commit | b2f192faabe412adce79534e22efe9fb69ee40e2 (patch) | |
tree | 7076c49d4286f8a1733650bd8fbc7161af200d57 /meta/packages/prism3-support/files | |
parent | 2cf0eadf9f730027833af802d7e6c90b44248f80 (diff) | |
download | poky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz |
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/prism3-support/files')
-rw-r--r-- | meta/packages/prism3-support/files/hostap-fw-load | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/packages/prism3-support/files/hostap-fw-load b/meta/packages/prism3-support/files/hostap-fw-load new file mode 100644 index 0000000000..00df1ef848 --- /dev/null +++ b/meta/packages/prism3-support/files/hostap-fw-load | |||
@@ -0,0 +1,20 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | if test -e /sbin/cardctl; then | ||
4 | CARDCTL=/sbin/cardctl | ||
5 | elif test -e /sbin/pccardctl; then | ||
6 | CARDCTL=/sbin/pccardctl | ||
7 | else | ||
8 | exit 0 | ||
9 | fi | ||
10 | |||
11 | # Special case for prism3 cards needing firmware upload | ||
12 | # Add more known manfids, if necessary | ||
13 | |||
14 | if [ `$CARDCTL info|grep "d601,0010\|d601,0101"` ]; then | ||
15 | iwpriv "$IFACE" reset 1 | ||
16 | hostap_fw_load "$IFACE" | ||
17 | fi | ||
18 | |||
19 | # lets hope that run-parts obeys the order :D | ||
20 | |||