Page 9 of 18 FirstFirst ... 7891011 ... LastLast
Results 81 to 90 of 173

Thread: New brcm80211 driver guide for Broadcom wireless cards

  1. #81
    Join Date
    Jan 2011
    Beans
    16

    Re: New brcm80211 driver guide for Broadcom wireless cards

    Thanks for the guide, all's working fine. My laptop hung a few times after installing the driver, making me switch it off and on with the power button. It seems to be doing fine now.

    If I read one of the posts correctly, the installed drivers are all being deleted by doing a kernel update. Is that correct?

    Thanks again for helping this Ubuntu n00b =).

  2. #82
    Join Date
    Jan 2011
    Beans
    16

    Re: New brcm80211 driver guide for Broadcom wireless cards

    EDIT: Double post.
    Last edited by krvermeulen; January 17th, 2011 at 08:26 PM. Reason: Double

  3. #83
    Join Date
    Jan 2011
    Beans
    4

    Help plz!

    Has anyone tried this on Ubuntu 10.04?
    I'm trying to install it but it won't compile. ? tried with both download links and it still don't :/
    Thanks in advance

  4. #84
    Join Date
    Jan 2011
    Beans
    1

    Re: New brcm80211 driver guide for Broadcom wireless cards

    I can't


    dream@dream-AO533:~$ sudo apt-get install build-essential git-core
    [sudo] password for dream:
    Leyendo lista de paquetes... Hecho
    Creando árbol de dependencias
    Leyendo la información de estado... Hecho
    build-essential ya está en su versión más reciente.
    git-core ya está en su versión más reciente.
    Los siguientes paquetes se instalaron automáticamente y no son necesarios:
    linux-headers-2.6.35-22 linux-headers-2.6.35-22-generic dkms
    Utilice «apt-get autoremove» para eliminarlos.
    0 actualizados, 0 se instalarán, 0 para eliminar y 18 no actualizados.
    1 no instalados del todo o eliminados.
    Se utilizarán 0B de espacio de disco adicional después de esta operación.
    ¿Desea continuar [S/n]? s
    Configurando firmware-b43-lpphy-installer (4.174.64.19-4) ...
    Not supported card here (PCI id 14e4:4727)!
    Use proper b43 or b43legacy firmware.
    Aborting.
    dpkg: error al procesar firmware-b43-lpphy-installer (--configure):
    el subproceso script post-installation instalado devolvió el código de salida de error 1
    Se encontraron errores al procesar:
    firmware-b43-lpphy-installer
    E: Sub-process /usr/bin/dpkg returned an error code (1)

    what is the problem? thanks

  5. #85
    Join Date
    Dec 2010
    Beans
    5

    Re: New brcm80211 driver guide for Broadcom wireless cards

    Hi dreamaker.jorge, your problem is that you need to uninstall the packets b43, b43legacy, firmware-b43-lpphy-installer,

    Code:
    Configurando firmware-b43-lpphy-installer (4.174.64.19-4) ...
    Not supported card here (PCI id 14e4:4727)!
    Use proper b43 or b43legacy firmware.
    It says that your card is not supported, I think you have the card BRCM 4313 (for the PCI id).
    Go to Synaptic and uninstall that packets and then try with the guide of the first page of this thread.

  6. #86
    Join Date
    Dec 2010
    Beans
    5

    Re: New brcm80211 driver guide for Broadcom wireless cards

    There are new commits but they still not compile. The problem is in this commit
    staging: brcm80211: Fix WL_<type> logging macros
    In it the developers added the functions printk and no_printk, but they forgot to implement them.
    I made a little scrip to correct the code, it only erases that functions from the code.

    When you go to the directory ~/linux-next/drivers/staging/brcm80211
    You need to do this:

    create the scrip
    Code:
    nano script.sh
    Add:
    Code:
    #!/bin/bash
    
    for file in ./brcmfmac/*
    do
    	sed -e 's/no_printk(.*)//' -i ${file}
    	sed -e 's/printk(.*)//' -i ${file}
    done
    
    for file in ./sys/*
    do
    	sed -e 's/no_printk(.*)//' -i ${file}
    	sed -e 's/printk(.*)//' -i ${file}
    done
    Save and exit

    execute
    Code:
    sudo chmod 777 script.sh
    execute
    Code:
    ./script.sh
    and then compile the driver

    Hope this help someone. And again sorry for my poor English

  7. #87
    Join Date
    May 2010
    Beans
    7

    Re: New brcm80211 driver guide for Broadcom wireless cards

    Hey, thanks for the how-to! I've sucessfully compiled (using the updated linux-next) on ubuntu 10.10 Dell Vostro 3500.
    Now the latency is regular and on 1.3ms inside the lan as expected. Before the fix it often got to 200ms.
    Now I just wish ubuntu devs used this driver instead.
    Thanks a lot!

  8. #88
    Join Date
    Jan 2011
    Beans
    4

    Re: New brcm80211 driver guide for Broadcom wireless cards

    I did everything per the guide, but when I tried
    "sudo insmod /lib/modules/`uname -r`/brcm80211.ko"
    I got an error saying there was an invalid parameter. I continued on with the rest of the steps. Now, when I try to login, the screen goes black and keeps repeating the last two seconds of the login music. Any ideas?

    I have Ubuntu 10.10 on a Dell Studio XPS 1640 w/ a Broadcomm 43224 wifi card.

  9. #89
    Join Date
    Jan 2011
    Beans
    4

    Re: New brcm80211 driver guide for Broadcom wireless cards

    In reference to the previous post, I was having problems with my wifi before I tried this guide. I could not get the wl module to load. I don't know if that means anything.

  10. #90
    Join Date
    Jul 2010
    Location
    Barracas, CABA, Argentina
    Beans
    3
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: New brcm80211 driver guide for Broadcom wireless cards

    @jmpratt

    I had that error, but I found that the notebook has a button to turn off the wl (and bluetoth) than to boot the system automatically shuts down, turned it on and ready

Page 9 of 18 FirstFirst ... 7891011 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •