Page 11 of 15 FirstFirst ... 910111213 ... LastLast
Results 101 to 110 of 142

Thread: Tenda W541U V2.0 Wireless USB Adapter / Ralink RT2070 How To

  1. #101
    Join Date
    Mar 2008
    Beans
    33

    Re: Tenda W541U V2.0 Wireless USB Adapter / Ralink RT2070 How To

    I think you are trying to modify a different version of the drivers, as Ralink keeps updating them. Please check in the first pages, I think there is a link there to the original driver this tutorial was designed to work with.

    Regards.

    Update: Here is a link to the original driver:

    http://www.sendspace.com/file/xfk1tg

    Quote Originally Posted by NX3 View Post
    The Tenda W541U v2 doesn't work out of the box on 10.04.

    I have followed the instructions from the first post but I fail at step 3 as below. I find no reference in the file to RT3070 or any similar line so don't know where to put the line.

    It would be much simplier if Ralink chipset wifi deviced worked out of the box.

    "
    #cd 2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux
    #pico usb_main_dev.c
    ...
    add:
    {USB_DEVICE(0x148F,0x2070)}, /* Ralink 2070L */
    under #ifdef RT3070
    ...
    Last edited by lesnoland; June 7th, 2010 at 08:02 PM.

  2. #102
    Join Date
    Jun 2010
    Location
    Kennewick, WA, USA
    Beans
    1
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Tenda W541U V2.0 Wireless USB Adapter / Ralink RT2070 How To

    It just worked! I downloaded all three files (kernel image and headers) and installed. A re-boot with the modified 2.6.32-17 kernel and my wireless came alive.

    Thank you for providing this to the community.

  3. #103
    Join Date
    Mar 2007
    Beans
    31
    Distro
    Xubuntu 10.04 Lucid Lynx

    Question Re: Tenda W541U V2.0 Wireless USB Adapter / Ralink RT2070 How To

    Hmmm. I have tried the instructions in the first post but the make fails. Initially this was because gcc was not installed but now I get:

    Code:
    make *** /lib/modules/2.6.32-22-generic/build: No such file or directory. Stop.
    I am running a new install of xubuntu 10.04 on an IBM R31 with 256MB RAM as a hobby project, so not that urgent, but I am confused by this. I figured it might be because I need the kernel source and downloaded that but no build directory appeared.

    I am also confused by the patch. When do I run the patch code? (assuming I can get the make and make installto work).
    Newbie to ubuntu - loving it - the linux I have been looking for
    DELL Inspiron 1300 with Ubuntu 9.10 and IBM R31 with xubuntu 10.04

  4. #104
    Join Date
    Mar 2008
    Beans
    33

    Re: Tenda W541U V2.0 Wireless USB Adapter / Ralink RT2070 How To

    you need to install the kernel headers (the kernel source is not required):

    Code:
    apt-get install build-essential kernel-headers-$(uname -r)
    if it still does not work, try to find some info about building a kernel module, you can easily find it on google.

    you run the patch code after you unpack the archive.

    Quote Originally Posted by thomaswp View Post
    Hmmm. I have tried the instructions in the first post but the make fails. Initially this was because gcc was not installed but now I get:

    Code:
    make *** /lib/modules/2.6.32-22-generic/build: No such file or directory. Stop.
    I am running a new install of xubuntu 10.04 on an IBM R31 with 256MB RAM as a hobby project, so not that urgent, but I am confused by this. I figured it might be because I need the kernel source and downloaded that but no build directory appeared.

    I am also confused by the patch. When do I run the patch code? (assuming I can get the make and make installto work).
    Last edited by lesnoland; June 26th, 2010 at 10:28 PM.

  5. #105
    Join Date
    Jul 2010
    Beans
    1

    Re: Tenda W541U V2.0 Wireless USB Adapter / Ralink RT2070 How To

    Hi.
    After compiling four different Ralink drivers (kernel modules) I was able to get 2 of them fully working with my Ralink 2070 wifi. I am using kernel 2.6.32. None of Ralinks drivers had the correct usb IDs I needed (148F:2070) this had to be added. Blacklisting of rt2800usb was also required. The two drivers that worked were:

    1) 2009_0525_RT3070_Linux_STA_v2.1.1.0 : This driver is no longer available from Ralink. This driver is well documented in this thread the, "rt3070-2.6.31-compile.patch" still worked with the 2.6.32 kernel.

    2) DPO_RT3070_LinuxSTA_V2.3.0.2_20100412 : This is a later driver available from Ralink This compiled for me with no errors without patching. just A) Make clean-- to clean up the junk, B) add your USB ID into "/commom/rtusb_dev_id.c" and C) Make -- compile the driver. The rt3070sta.ko is built into the /os/linux directory.

    I also tried 2 RT2870 drivers but was not able to get them fully working with the 2070 hardware.
    Keep having fun
    Jeff

  6. #106
    Join Date
    Nov 2009
    Beans
    3

    Re: Tenda W541U V2.0 Wireless USB Adapter / Ralink RT2070 How To

    I've successfully installed the latest ralink driver (DPO_RT3070_LinuxSTA_V2.3.0.4_20100604) on kernel 2.6.34, but I'm getting this error with 2.6.35:

    CC [M] /usr/src/DPO_RT3070_LinuxSTA_V2.3.0.4_20100604/os/linux/../../common/cmm_mac_usb.o
    /usr/src/DPO_RT3070_LinuxSTA_V2.3.0.4_20100604/os/linux/../../common/cmm_mac_usb.c: In function ■NICInitTransmit■:
    /usr/src/DPO_RT3070_LinuxSTA_V2.3.0.4_20100604/os/linux/../../common/cmm_mac_usb.c:917: error: implicit declaration of function
    ■usb_buffer_alloc■
    /usr/src/DPO_RT3070_LinuxSTA_V2.3.0.4_20100604/os/linux/../../common/cmm_mac_usb.c:917: warning: cast to pointer from integer of different size
    /usr/src/DPO_RT3070_LinuxSTA_V2.3.0.4_20100604/os/linux/../../common/cmm_mac_usb.c:1004: warning: cast to pointer from integer of different size
    /usr/src/DPO_RT3070_LinuxSTA_V2.3.0.4_20100604/os/linux/../../common/cmm_mac_usb.c:1022: warning: cast to pointer from integer of different size
    /usr/src/DPO_RT3070_LinuxSTA_V2.3.0.4_20100604/os/linux/../../common/cmm_mac_usb.c:1039: warning: cast to pointer from integer of different size
    /usr/src/DPO_RT3070_LinuxSTA_V2.3.0.4_20100604/os/linux/../../common/cmm_mac_usb.c:1055: warning: cast to pointer from integer of different size
    /usr/src/DPO_RT3070_LinuxSTA_V2.3.0.4_20100604/os/linux/../../common/cmm_mac_usb.c:1078: error: implicit declaration of function ■usb_buffer_free■
    make[2]: *** [/usr/src/DPO_RT3070_LinuxSTA_V2.3.0.4_20100604/os/linux/../../common/cmm_mac_usb.o] Error 1
    make[1]: *** [_module_/usr/src/DPO_RT3070_LinuxSTA_V2.3.0.4_20100604/os/linux] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.6.35-gentoo-r2'
    make: *** [LINUX] Error 2
    Any ideas?

  7. #107
    Join Date
    Aug 2010
    Beans
    2

    Re: Tenda W541U V2.0 Wireless USB Adapter / Ralink RT2070 How To

    i have the same trouble with 2.6.35 kernel (.
    please post here if someone solve this problem.

  8. #108
    Join Date
    Aug 2010
    Beans
    16

    Re: Tenda W541U V2.0 Wireless USB Adapter / Ralink RT2070 How To

    It seems that they renamed usb_buffer_alloc and usb_buffer_free in 2.6.35 into usb_alloc_coherent and usb_free_coherent. Attached is a patch which fixes the compile errors. Let me know if the driver works for you now!

    (driver version: DPO_RT3070_LinuxSTA_V2.3.0.4_20100604)

  9. #109
    Join Date
    Aug 2010
    Beans
    2

    Re: Tenda W541U V2.0 Wireless USB Adapter / Ralink RT2070 How To

    it works. thank you.

  10. #110
    Join Date
    Sep 2010
    Beans
    1

    Re: Tenda W541U V2.0 Wireless USB Adapter / Ralink RT2070 How To

    Quote Originally Posted by VolatileMember View Post
    It seems that they renamed usb_buffer_alloc and usb_buffer_free in 2.6.35 into usb_alloc_coherent and usb_free_coherent. Attached is a patch which fixes the compile errors. Let me know if the driver works for you now!

    (driver version: DPO_RT3070_LinuxSTA_V2.3.0.4_20100604)
    Hello,

    can you please tell me how to patch this diff-file???
    I`m only a newbie

    Regards
    Strunz

Page 11 of 15 FirstFirst ... 910111213 ... LastLast

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
  •