summaryrefslogtreecommitdiff
path: root/openembedded/packages/prism3-support/files/hostap-fw-load
diff options
context:
space:
mode:
Diffstat (limited to 'openembedded/packages/prism3-support/files/hostap-fw-load')
-rw-r--r--openembedded/packages/prism3-support/files/hostap-fw-load12
1 files changed, 9 insertions, 3 deletions
diff --git a/openembedded/packages/prism3-support/files/hostap-fw-load b/openembedded/packages/prism3-support/files/hostap-fw-load
index 0b2aec51a..00df1ef84 100644
--- a/openembedded/packages/prism3-support/files/hostap-fw-load
+++ b/openembedded/packages/prism3-support/files/hostap-fw-load
@@ -1,11 +1,17 @@
#!/bin/sh
+if test -e /sbin/cardctl; then
+ CARDCTL=/sbin/cardctl
+elif test -e /sbin/pccardctl; then
+ CARDCTL=/sbin/pccardctl
+else
+ exit 0
+fi
+
# Special case for prism3 cards needing firmware upload
# Add more known manfids, if necessary
-
-test -x /sbin/cardctl || exit 0
-if [ `cardctl info|grep "d601,0010\|d601,0101"` ]; then
+if [ `$CARDCTL info|grep "d601,0010\|d601,0101"` ]; then
iwpriv "$IFACE" reset 1
hostap_fw_load "$IFACE"
fi