diff options
author | Graeme Gregory <dp@xora.org.uk> | 2007-03-02 11:58:21 +0000 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2007-03-02 11:58:21 +0000 |
commit | 6e097fdb8f668ed6578f013951aec742b29cff61 (patch) | |
tree | e6d1fa95f6474c4fc8f002ceac8963b282e05d3d /packages/prism3-support/files/hostap-fw-load | |
parent | 3309f47cebb2fafe117810b94d039dd8fd80c69d (diff) |
prism3-support_1.0.0.bb : correct thinko/typo in hostap_fw_load which prevented prism3 firmware ever loading unless we werent a wireless card. Also thanks to
pH5 snuck in a small optimisation.
Diffstat (limited to 'packages/prism3-support/files/hostap-fw-load')
-rw-r--r-- | packages/prism3-support/files/hostap-fw-load | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/prism3-support/files/hostap-fw-load b/packages/prism3-support/files/hostap-fw-load index d0a002bbbb..1f37aaf744 100644 --- a/packages/prism3-support/files/hostap-fw-load +++ b/packages/prism3-support/files/hostap-fw-load @@ -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 |