John H. wrote: > I cannot find the site of which you speak. > > I can't seem to get it to let me use only bcm43xx and not bcm43xx-mac80211. > > Also, which firmware here is v3?
If you run this script by John Linville, your system will use bcm43xx. It will also download and install the V3 firmware. Larry ================================================= #!/bin/sh BCM43XX_V3_FW="http://downloads.openwrt.org/sources/wl_apsta-3.130.20.0.o" wget $BCM43XX_V3_FW bcm43xx-fwcutter -w /lib/firmware -p .v3 wl_apsta-3.130.20.0.o echo 'blacklist bcm43xx-mac80211' >> /etc/modprobe.d/blacklist echo 'options bcm43xx fwpostfix=.v3' >> /etc/modprobe.conf modprobe -r bcm43xx-mac80211 # remove the new driver echo 'modprobe bcm43xx' >> /etc/rc.local BCM43XX_PCI_ID=`lspci -n | awk '$2 ~ "^0280" && $3 ~ "^14e4:43" { print $3 }' | sed -e 's/:/ /'` echo 'echo "'$BCM43XX_PCI_ID'" > /sys/bus/pci/drivers/bcm43xx/new_id' \ >> /etc/rc.local /etc/rc.local ============================== _______________________________________________ Bcm43xx-dev mailing list [email protected] https://lists.berlios.de/mailman/listinfo/bcm43xx-dev
