prism3-support_1.0.0.bb : correct thinko/typo in hostap_fw_load which prevented prism...
authorGraeme Gregory <dp@xora.org.uk>
Fri, 2 Mar 2007 11:58:21 +0000 (11:58 +0000)
committerGraeme Gregory <dp@xora.org.uk>
Fri, 2 Mar 2007 11:58:21 +0000 (11:58 +0000)
pH5 snuck in a small optimisation.

packages/prism3-support/files/hostap-fw-load
packages/prism3-support/prism3-support_1.0.0.bb

index d0a002b..1f37aaf 100644 (file)
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 # dont handle non-wireless interfaces 
-if [ -n "`cat /proc/net/wireless|grep $IFACE`" ]; then 
+if [ -z "`grep $IFACE /proc/net/wireless`" ]; then 
     exit 0 
 fi 
                                                        
index 88623a4..bcf571e 100644 (file)
@@ -4,7 +4,7 @@ LICENSE = "GPL"
 DEPENDS = "prism3-firmware hostap-utils"
 RDEPENDS = "prism3-firmware hostap-utils"
 PACKAGE_ARCH = "all"
-PR = "r4"
+PR = "r5"
 
 SRC_URI = "file://hostap-fw-load"