]> code.ossystems Code Review - openembedded-core.git/commitdiff
prism-firmware: sync with OE (usage of 1.7.4 firmware and other fixes)
authorMarcin Juszkiewicz <hrw@openedhand.com>
Fri, 26 Oct 2007 11:30:44 +0000 (11:30 +0000)
committerMarcin Juszkiewicz <hrw@openedhand.com>
Fri, 26 Oct 2007 11:30:44 +0000 (11:30 +0000)
Revision: a5a7ee9814548b1e054d96cea845556c4b5c39e9
Author: xora@openembedded.org
Date: 2007-09-03T14:18:11
Branch: org.openembedded.dev

ChangeLog:

misc-binary-only/prism-firmware.bb : use non broken prism firmware. This
should ease the connection problems people reported with 1.8.4 and
improve kismetting

-----------------------------------------------------------------
Revision: a72b36a49416a98cb1f4a0ef9132181b0d28c6cb
Author: xora@openembedded.org
Date: 2007-06-29T08:28:48
Branch: org.openembedded.dev

ChangeLog:

prism-firmware.bb : remove if around secondary firmware download as we always
want to do this and logic as presented prevented download on flashless cards.

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2995 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/packages/misc-binary-only/prism-firmware.bb
meta/packages/misc-binary-only/prism-firmware/prism-fw.sh

index 4b18d865dad4cdd9cee9a74ffec239b2a134bb4c..903c55e15edf76f1c13315ccf13de9d3c0aaff1e 100644 (file)
@@ -5,22 +5,24 @@ RDEPENDS = "hostap-utils"
 RREPLACES = "prism3-firmware prism3-support"
 RCONFLICTS = "prism3-firmware prism3-support"
 PACKAGE_ARCH = "all"
-PR = "r1"
+PR = "r3"
 
-SRC_URI = "http://www.red-bean.com/~proski/firmware/Latest-prism.tar.bz2 \
+SRC_URI = "http://www.red-bean.com/~proski/firmware/primary.tar.bz2 \
+           http://www.red-bean.com/~proski/firmware/1.7.4.tar.bz2 \
            file://prism-fw.sh \
           file://hostap.rules"
 
-S = "${WORKDIR}/Latest-prism/"
-
 do_install() {
        install -d ${D}${base_libdir}/firmware/
        install -d ${D}${base_libdir}/udev/
        install -d ${D}${sysconfdir}/pcmcia/
        install -d ${D}${sysconfdir}/udev/rules.d/
 
-       install -m 0644 primary-RAM/*.hex ${D}${base_libdir}/firmware/
-       install -m 0644 secondary-RAM/rf010804.hex ${D}${base_libdir}/firmware/
+       install -m 0644 ${WORKDIR}/primary/af010104.hex ${D}${base_libdir}/firmware/
+       install -m 0644 ${WORKDIR}/primary/ak010104.hex ${D}${base_libdir}/firmware/
+       install -m 0644 ${WORKDIR}/primary/pm010102.hex ${D}${base_libdir}/firmware/
+
+       install -m 0644 ${WORKDIR}/1.7.4/rf010704.hex ${D}${base_libdir}/firmware/
 
        install -m 0755 ${WORKDIR}/prism-fw.sh ${D}${base_libdir}/udev/
        install -m 0644 ${WORKDIR}/hostap.rules ${D}${sysconfdir}/udev/rules.d/
index c58600791cf53de1471b1b66f8c5d253152a55cf..619f612be1bd42106c3c717b6a3e1ef8e66b446f 100644 (file)
@@ -4,7 +4,7 @@ CARD_ID=`/usr/sbin/hostap_diag $INTERFACE|grep NICID|awk '{print $2}'|sed -e 's/
 
 # 801d cards lack even Primary firmware so we cannot use hostap_diag
 PRI=/lib/firmware/pm010102.hex 
-STA=/lib/firmware/rf010804.hex
+STA=/lib/firmware/rf010704.hex
 
 if [ $CARD_ID = '800c' ] || [ $CARD_ID = '8013' ] || [ $CARD_ID = '8017' ] || \
    [ $CARD_ID = '801b' ] || [ $CARD_ID = '8022' ] || [ $CARD_ID = '8023' ] ; then
@@ -28,6 +28,5 @@ if grep -q no_pri=1 $DIR/debug; then
     /usr/sbin/prism2_srec -gp wlan0 $PRI 
 fi
 
-if grep -q pri_only=0 $DIR/debug; then
-    /usr/sbin/prism2_srec -rp wlan0 $STA
-fi
+/usr/sbin/prism2_srec -rp wlan0 $STA
+