prism3-support: Fix multiple network device issues

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@916 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2006-11-21 11:45:54 +00:00
parent faedc55e30
commit ca861e80fa
2 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,9 @@
#!/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
@ -18,3 +23,4 @@ fi
# lets hope that run-parts obeys the order :D
exit 0

View File

@ -4,7 +4,7 @@ LICENSE = "GPL"
DEPENDS = "prism3-firmware hostap-utils"
RDEPENDS = "prism3-firmware hostap-utils"
PACKAGE_ARCH = "all"
PR = "r2"
PR = "r3"
SRC_URI = "file://hostap-fw-load"