summaryrefslogtreecommitdiffstats
path: root/openembedded/packages/prism3-support
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-05-09 18:38:19 +0000
committerRichard Purdie <richard@openedhand.com>2006-05-09 18:38:19 +0000
commitb4cb437c6595ff8ac13506e502fe04b1a60c4e04 (patch)
treef529de217094f1a49049f90c49d779a49e19cd7c /openembedded/packages/prism3-support
parent3baacb49c13a48798d45e30a0a0076ca0b8c9e6a (diff)
downloadpoky-b4cb437c6595ff8ac13506e502fe04b1a60c4e04.tar.gz
Merge packages changes from OE into poky.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@386 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/prism3-support')
-rw-r--r--openembedded/packages/prism3-support/files/hostap-fw-load12
-rw-r--r--openembedded/packages/prism3-support/prism3-support_1.0.0.bb2
2 files changed, 10 insertions, 4 deletions
diff --git a/openembedded/packages/prism3-support/files/hostap-fw-load b/openembedded/packages/prism3-support/files/hostap-fw-load
index 0b2aec51a8..00df1ef848 100644
--- a/openembedded/packages/prism3-support/files/hostap-fw-load
+++ b/openembedded/packages/prism3-support/files/hostap-fw-load
@@ -1,11 +1,17 @@
1#!/bin/sh 1#!/bin/sh
2 2
3if test -e /sbin/cardctl; then
4 CARDCTL=/sbin/cardctl
5elif test -e /sbin/pccardctl; then
6 CARDCTL=/sbin/pccardctl
7else
8 exit 0
9fi
10
3# Special case for prism3 cards needing firmware upload 11# Special case for prism3 cards needing firmware upload
4# Add more known manfids, if necessary 12# Add more known manfids, if necessary
5
6test -x /sbin/cardctl || exit 0
7 13
8if [ `cardctl info|grep "d601,0010\|d601,0101"` ]; then 14if [ `$CARDCTL info|grep "d601,0010\|d601,0101"` ]; then
9 iwpriv "$IFACE" reset 1 15 iwpriv "$IFACE" reset 1
10 hostap_fw_load "$IFACE" 16 hostap_fw_load "$IFACE"
11fi 17fi
diff --git a/openembedded/packages/prism3-support/prism3-support_1.0.0.bb b/openembedded/packages/prism3-support/prism3-support_1.0.0.bb
index dfe3f5a9fb..85f1391ed4 100644
--- a/openembedded/packages/prism3-support/prism3-support_1.0.0.bb
+++ b/openembedded/packages/prism3-support/prism3-support_1.0.0.bb
@@ -4,8 +4,8 @@ LICENSE = "GPL"
4DEPENDS = "prism3-firmware hostap-utils" 4DEPENDS = "prism3-firmware hostap-utils"
5RDEPENDS = "prism3-firmware hostap-utils" 5RDEPENDS = "prism3-firmware hostap-utils"
6MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" 6MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
7PR = "r1"
8PACKAGE_ARCH = "all" 7PACKAGE_ARCH = "all"
8PR = "r2"
9 9
10SRC_URI = "file://hostap-fw-load" 10SRC_URI = "file://hostap-fw-load"
11 11