Florian Erfurth wrote:
> Larry Finger schrieb:
> Only 15Mbs? At home I get the best connection (about 4m away from
> accesspoint).
> >>>
> [EMAIL PROTECTED] ~]# iwconfig
> wlan0 IEEE 802.11b/g ESSID:"homeworld" Nickname:"Turion"
> Mode:Managed Frequency=2.462 GHz Access Point: XX:XX:XX:XX:XX:XX
> Bit Rate=24 Mb/s Tx-Power=19 dBm
> RTS thr:off Fragment thr:off
> Encryption key:XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XX Security mode:open
> Link Quality=65/100 Signal level=-45 dBm Noise level=-73 dBm
> Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
> Tx excessive retries:0 Invalid misc:0 Missed beacon:0
> <<<
>
> I'm using 2.6.22-rc6 with bcm43xx (with Firmware V3). With
> bcm43xx-mac80211 the connection is not reliable, unfortunatelly.
>
> Another question... the patches in 2.6.22-rc6 will be in official kernel
> 2.6.22? I mean, if Fedora bring out 2.6.22-X kernel-package then it
> contains the patches?
I was not talking about the "Bit Rate" reported by iwconfig. My numbers were
_MEASURED_ using Iperf
and by file transfer to a server on my LAN. FYI, the maximum rate for Windows
XP under the same
conditions is 19 Mbs, and it reports a bit rate of 54 Mbs.
AFAIK, all Fedora kernels in the future will contain a bcm43xx driver with a
restricted PCI ID list.
To use bcm43xx, rather than bcm43xx-mac80211, you should copy and paste the
script below to a file,
use chmod to make it executable, and run it as root.
========================
#!/bin/sh
echo 'blacklist bcm43xx-mac80211' >> /etc/modprobe.d/blacklist
modprobe -r bcm43xx-mac80211 # remove the new driver
echo 'modprobe bcm43xx' >> /etc/rc.local
BCM43XX_PCI_ID=`lspci -n | grep 14e4 | awk '{ print $3 }' | sed -e 's/:/ /'`
echo 'echo "'$BCM43XX_PCI_ID'" > /sys/bus/pci/drivers/bcm43xx/new_id' \
>> /etc/rc.local
================
After this script is run once, you should do a '/etc/rc.local' command (as
root). BTW, this script
is adapted from one posted by John Linville.
Larry
_______________________________________________
Bcm43xx-dev mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/bcm43xx-dev