diff options
Diffstat (limited to 'packages/prism3-support/files/hostap-fw-load')
-rw-r--r-- | packages/prism3-support/files/hostap-fw-load | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/prism3-support/files/hostap-fw-load b/packages/prism3-support/files/hostap-fw-load index 00df1ef848..707030c6a7 100644 --- a/packages/prism3-support/files/hostap-fw-load +++ b/packages/prism3-support/files/hostap-fw-load @@ -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
\ No newline at end of file |