Files
poky/meta/packages/prism3-support/files/hostap-fw-load
Richard Purdie ca861e80fa prism3-support: Fix multiple network device issues
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@916 311d38ba-8fff-0310-9ca6-ca027cbcb966
2006-11-21 11:45:54 +00:00

689 B

#!/bin/sh

dont handle non-wireless interfaces

if [ -n cat /proc/net/wireless|grep $IFACE ]; then exit 0 fi

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

exit 0