diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-21 11:45:54 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-21 11:45:54 +0000 |
commit | ca861e80fa0dce3155662a8640745fd51c52fb26 (patch) | |
tree | 17b4c4e8072538848160d2e3caf82443af312740 /meta/packages | |
parent | faedc55e301848ba76aa6df3698d0e21a8717201 (diff) | |
download | poky-ca861e80fa0dce3155662a8640745fd51c52fb26.tar.gz |
prism3-support: Fix multiple network device issues
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@916 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages')
-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 | ||