prism-firmware: sync with OE (usage of 1.7.4 firmware and other fixes)

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
This commit is contained in:
Marcin Juszkiewicz 2007-10-26 11:30:44 +00:00
parent 33ebd14045
commit 98cc181f6b
2 changed files with 11 additions and 10 deletions

View 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/

View 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