Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15

Thread: weird network mager act

  1. #11
    Join Date
    Dec 2008
    Beans
    Hidden!
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Talking Re: weird network mager act

    umm... I'm a sane guy over internet but ... excuse me for this perticular post please..

    Ayuthia, YOU ROCK !!!!!!!!!!!!!! THANKS ALOT FOR HELP

    HOLY COW ! HOLY JESUS !! HOLY GOD !!! I'M ON WIRELESS RIGHT NOW


    Thanks alot Ayuthia hey iuponeverything, thanks

    cya !

  2. #12
    Join Date
    Feb 2007
    Beans
    19

    Re: weird network mager act

    I'm working on this too. I'll post my results shortly (I hope!).

    results:
    http://ubuntuforums.org/showthread.php?t=1010751
    Last edited by jron; December 14th, 2008 at 11:44 PM.

  3. #13
    Join Date
    Feb 2007
    Beans
    100

    Re: weird network mager act

    when i try to apply this patch, it is asking for "File to patch"
    Can you please tell me how to apply this patch correctly??

    Quote Originally Posted by Ayuthia View Post
    Here is a patch that I created (so it is not official), but it is based on the same patch that was made for the original source. The patch compiled and worked on my 4311 card. I have not tested the new changes on the Broadcom version so I am not for sure what changes they have made.

    Attached is the patch. You will need to download the source from:
    http://www.broadcom.com/support/802.11/linux_sta.php
    Extract the download like the instructions say in the Broadcom site. Do not compile it yet.

    Download the attached patch from this post and place it in the directory where you extracted the Broadcom source (it will be in the same directory as the Makefile). Extract the hybrid_wl-5.10.27.11_patch-2.6.27.tar.gz:
    Code:
    tar -xvvf hybrid_wl-5.10.27.11_patch-2.6.27.tar.gz
    Then apply the patch:
    Code:
    patch -p1 -E < hybrid_wl-5.10.27.11_patch-2.6.27
    Finally compile as normal:
    Code:
    make -C /lib/modules/<2.6.xx.xx>/build M=`pwd` clean
    make -C /lib/modules/<2.6.xx.xx>/build M=`pwd`
    Just replace <2.6.xx.xx> with the current kernel version (uname -r from the terminal).

    Hope this helps. As I said, this is not the official patch, but one that I created so it has only been tested by me, but it is similar to the patch from before. If you are not comfortable, you can wait a few days until a patch comes out for this kernel.

  4. #14
    Join Date
    Apr 2007
    Location
    Mount Horeb, WI
    Beans
    4,312
    Distro
    Kubuntu Development Release

    Re: weird network mager act

    Quote Originally Posted by cenwesi View Post
    when i try to apply this patch, it is asking for "File to patch"
    Can you please tell me how to apply this patch correctly??
    It appears that you are not in the correct directory. I am not for sure about where you placed the Broadcom source code so we will start from the beginning. Let's say that you have the hybrid_wl-5.10.27.11_patch-2.6.27.tar.gz file and the hybrid-portsrc-*_5_10_27_11.tar.gz on the Desktop. You will then need to do the following:

    Step 1: Make a directory to patch and compile the source
    Code:
    cd ~/Desktop
    mkdir hybrid
    Step 2: Copy the two files (source and patch) into the new directory
    Code:
    cp hybrid-portsrc-*_5_10_27_11.tar.gz hybrid
    cp hybrid_wl-5.10.21.11_patch-2.6.27.tar.gz hybrid
    Step 3: Go into the new directory and extract the files
    Code:
    cd hybrid
    tar -xzf hybrid-portsrc-*_5_10_27_11.tar.gz
    tar -xvvf hybrid_wl-5.10.21.11_patch-2.6.27.tar.gz
    Step 4: Patch the source
    Code:
    patch -p1 -E < hybrid_wl-5.10.27.11_patch-2.6.27
    Step 5: Clean up the source in case there has been prior compiles
    Code:
    make -C /lib/modules/`uname -r`/build M=`pwd` clean
    Step 6: Compile the source
    Code:
    make -C /lib/modules/`uname -r`/build M=`pwd`
    Step 7: Verify that the wl.ko was created
    Code:
    ls
    If you see a wl.ko file at the end of all these commands, the module is compiled. Hope that helps.
    Last edited by Ayuthia; December 17th, 2008 at 04:07 PM. Reason: Cleaned up the commands so that it is in steps.

  5. #15
    Join Date
    Feb 2007
    Beans
    100

    Re: weird network mager act

    worked like a charm... just make sure you use the patch on this thread.

    ps: i am running kernel 2.6.27.9

Page 2 of 2 FirstFirst 12

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
  •