Find the answer to your Linux question:
Page 2 of 2 FirstFirst 1 2
Results 11 to 16 of 16
The driver compiled, it was just a warning. I googled the warning and I found that many using broadcome driver have the same warning but they have it working...
  1. #11
    Just Joined!
    Join Date
    Sep 2009
    Posts
    8


    The driver compiled, it was just a warning.
    I googled the warning and I found that many using broadcome driver have the same warning but they have it working

  2. #12
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,570
    The instructions appear to be missing an important part. After compiling the module, you need to install it.
    Code:
    sudo make install
    Then run these commands.
    Code:
    sudo depmod -a
    Code:
    sudo modprobe wl
    Paul

    Please do not send Private Messages to me with requests for help. I will not reply.

  3. #13
    Just Joined!
    Join Date
    Sep 2009
    Posts
    8
    No, didn't work. No rule for make install.

    I removed everything I installed before and tried to reinstall it. And I get the same error message as the first time, but now I applied patch after I unpacked the driver. Bit of confused.

  4. #14
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,570
    Sorry, I thought that the make install command would work. You will need to manually copy the wl.ko module into your /lib/modules folder. The instructions refer to this, but don't tell you how.
    Replacing existing driver with wl.ko just build in step 5 above.
    (most likely path to find wl.ko is: /lib/modules/<kernel_version>/kernel/driver/net/wireless
    You can do this using the cp command, with root privileges. You need to know the exact kernel module folder to copy it to. Here is the command I used for my Ubuntu system.
    Code:
    sudo cp wl.ko /lib/modules/2.6.28-15-generic/kernel/drivers/net/wireless
    Now run the other two commands
    Code:
    sudo depmod -a
    Code:
    sudo modprobe wl
    This should load the module, you can check for it in the output of this command, it should be at the top of the list.
    Code:
    lsmod
    Last edited by waterhead; 09-18-2009 at 03:15 PM.
    Paul

    Please do not send Private Messages to me with requests for help. I will not reply.

  5. #15
    Just Joined! Soupstuffs's Avatar
    Join Date
    Sep 2009
    Posts
    1
    I had the same exact problem with my Dell Vostro 1510, and this worked for me! I found this thread on Google after trying out probably around 30 other suggestions I found.

    Thank you very much, Waterhead.

  6. #16
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,570

    !

    Glad to help!
    Paul

    Please do not send Private Messages to me with requests for help. I will not reply.

Page 2 of 2 FirstFirst 1 2

Posting Permissions

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