diff options
-rw-r--r-- | meta/packages/prism3-support/files/hostap-fw-load | 6 | ||||
-rw-r--r-- | meta/packages/prism3-support/prism3-support_1.0.0.bb | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/meta/packages/prism3-support/files/hostap-fw-load b/meta/packages/prism3-support/files/hostap-fw-load index 00df1ef848..707030c6a7 100644 --- a/meta/packages/prism3-support/files/hostap-fw-load +++ b/meta/packages/prism3-support/files/hostap-fw-load | |||
@@ -1,4 +1,9 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | |||
3 | # dont handle non-wireless interfaces | ||
4 | if [ -n `cat /proc/net/wireless|grep $IFACE` ]; then | ||
5 | exit 0 | ||
6 | fi | ||
2 | 7 | ||
3 | if test -e /sbin/cardctl; then | 8 | if test -e /sbin/cardctl; then |
4 | CARDCTL=/sbin/cardctl | 9 | CARDCTL=/sbin/cardctl |
@@ -18,3 +23,4 @@ fi | |||
18 | 23 | ||
19 | # lets hope that run-parts obeys the order :D | 24 | # lets hope that run-parts obeys the order :D |
20 | 25 | ||
26 | exit 0 \ No newline at end of file | ||
diff --git a/meta/packages/prism3-support/prism3-support_1.0.0.bb b/meta/packages/prism3-support/prism3-support_1.0.0.bb index 830da22c2b..b3c00e422f 100644 --- a/meta/packages/prism3-support/prism3-support_1.0.0.bb +++ b/meta/packages/prism3-support/prism3-support_1.0.0.bb | |||
@@ -4,7 +4,7 @@ LICENSE = "GPL" | |||
4 | DEPENDS = "prism3-firmware hostap-utils" | 4 | DEPENDS = "prism3-firmware hostap-utils" |
5 | RDEPENDS = "prism3-firmware hostap-utils" | 5 | RDEPENDS = "prism3-firmware hostap-utils" |
6 | PACKAGE_ARCH = "all" | 6 | PACKAGE_ARCH = "all" |
7 | PR = "r2" | 7 | PR = "r3" |
8 | 8 | ||
9 | SRC_URI = "file://hostap-fw-load" | 9 | SRC_URI = "file://hostap-fw-load" |
10 | 10 | ||