summaryrefslogtreecommitdiffstats
path: root/meta/packages/prism3-support/files/hostap-fw-load
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/prism3-support/files/hostap-fw-load')
-rw-r--r--meta/packages/prism3-support/files/hostap-fw-load20
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 @@
+#!/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
+
+if [ `$CARDCTL info|grep "d601,0010\|d601,0101"` ]; then
+ iwpriv "$IFACE" reset 1
+ hostap_fw_load "$IFACE"
+fi
+
+# lets hope that run-parts obeys the order :D
+