Results 1 to 4 of 4

Thread: Getting the linksys wusb600n to work!

Hybrid View

  1. #1
    Join Date
    Sep 2010
    Beans
    3

    Getting the linksys wusb600n to work!

    My hair is almost gone now lol, hell bent on getting this thing to work. I hope BabyStuey doesn't mind me posting this, seems to have everyone up and running but me. Can't get past the first step. Anyone else having problems?




    WUSB600N v2 Quickstart Guide for Linux
    A present for everyone having trouble with the Cisco/Linksys Wireless-N USB Network Adapter with Dual-Band Version 2 (aka WUSB600N v2)!

    NOTE: The code for the Ralink driver is currently NOT 64-bit clean, so any success compiling and installing on a 64-bit kernel (amd64, x86_64, etc.) is pure fluke. If anyone has any luck getting the adapter to work in a 64-bit environment, please let me know! These instructions are proven only for 32-bit environments.

    NOTE: These were the steps required to install the driver on a system running Debian GNU/Linux 2.6.26-2-686, installed from the 5.0.4 (lenny) i386 image available at: http://www.debian.org/CD/

    They were revised to be clearer for users running different distributions, including Ubuntu and Fedora. Others may require minor tweaks, but should work as well.

    Additional Tests Performed:

    Fedora 12 (2.6.31.5-127.fc12.i686.PAE)
    Installed from: Desktop Edition i686 Live CD
    http://download.fedoraproject.org/pu...-i686-Live.iso
    Result: EASY! No added packages were required. Only requires you compile and install the driver - no additional tweaks necessary.

    Ubuntu 10.04 Lucid Lynx (2.6.32-21-generic)
    Installed from: PC (Intel x86) desktop CD image, ubuntu-10.04-desktop-i386.iso
    http://www.ubuntulinux.org/getubuntu/download
    Result: Pretty easy. No added packages were required. Follow the instructions and it should work.

    NOTE: pico and nano are command-line text editors. If nano doesn't work in the commands below, try pico. You can always link one to the other by making a link: Code:
    # ln /usr/bin/nano /usr/bin/pico
    which will run nano whenever you (accidentally) type pico.

    NOTE: Ubuntu users, please read: https://help.ubuntu.com/community/RootSudo for information running commands as the super-user.

    NOTE: Fedora users are able to ignore the prerequisites, perform Steps 0 through 6, 11 and 12, skipping steps 7 through 10 completely.


    WUSB600N v2
    Quickstart Guide for Linux

    Debian Prerequisites (mostly precautionary):
    - Plug into a wired connection and do a full update with System > Administration > Update Manager.
    - Load Synaptic Package Manager
    - You will have have "linux-image-${VERSION}" installed
    - ...where ${VERSION} is the output from the command `uname -r`. For example: linux-headers-2.6.26-2-686.
    - Make sure you have "linux-headers-${VERSION}" installed
    - Make sure you have "linux-source-${VERSION}" installed
    - Install "build-essential" (and also possibly "kernel-package", "kbuild", "linux-kbuild-${VERSION}", "linux-support-${VERSION}", though I doubt if these were actually required)


    Step 0.
    Stop pretending ndiswrapper will work reliably! lol.

    Step 1.

    Download the correct chipset driver from Ralink:
    - http://www.ralinktech.com/support.php?s=2
    - You need RT3572USB 2.3.0.0 (12/22/2009) or similar
    - NOT RT2870USB (This is for Version 1 only!)
    Step 2.
    Unpack the tarball {DATE}_RT3572_LinuxSTA_{VERSION}.tar.bz2 to a location where you can find it (home folder, Desktop, etc.) All paths listed below are in reference to the folder you just unpacked, for example ${BASE} actually refers to the folder: "/home/username/Desktop/2009_1214_RT3572_LinuxSTA_V2.3.0.0/" (or similar)

    Step 3.
    From the command line, run lsusb. You should get some output that looks like this:
    "ID 1737:0079 Linksys WUSB600N Wireless-N USB Network Adapter with Dual-Band ver. 2"
    Step 4.
    - Open the file ${BASE}/common/rtusb_devid.c
    - Line 103 shows the device id for WUSB600N Version 1:
    {USB_DEVICE(0x1737,0x0071)}, /* Linksys WUSB600N */
    - We need to tell the driver to work with Version 2.
    - At line 119, add (which should match your output from Step 3):
    {USB_DEVICE(0x1737,0x0079)}, /* Linksys WUSB600N v2 */
    - Like so:

    Code:
    #ifdef RT35xx {USB_DEVICE(0x148F,0x3572)}, /* Ralink 3572 */ ... {USB_DEVICE(0x167B,0x4001)}, /* 3572 */ {USB_DEVICE(0x1737,0x0079)}, /* Linksys WUSB600N v2 */ #endif // RT35xx // { }/* Terminating entry */
    Step 5.
    As per the ${BASE}/README_STA file's instructions, change the two values in ${BASE}/os/linux/config.mk from =n to =y:
    - HAS_WPA_SUPPLICANT=y
    - HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y

    Step 6. --- more on this step below in post #13.
    Compile the driver:
    - cd to the driver's home folder ${BASE}

    $ cd ${BASE}
    $ make
    - Deal with any missing package and/or configuration issues that may be displayed.

    - Once the driver compiles correctly, install it as the superuser:
    $ sudo make install
    OR
    $ su
    # make install
    Step 7.
    If you scroll waaaay to the bottom of ${BASE}/README_STA, you'll see some confusing instructions. What they are trying to say is:
    - As the superuser, open /etc/modules
    $ sudo nano /etc/modules
    OR
    $ su
    # nano /etc/modules
    - In Ubuntu, add the lines:
    rt3572sta # Ubuntu only!
    alias ra0 rt3572sta
    - In Debian, add only the line:
    alias ra0 rt3572sta
    Step 8.
    If you want your driver module to load at startup (and this you do)...
    - As the superuser, open /etc/network/interfaces
    $ sudo nano /etc/network/interfaces
    OR
    $ su
    # nano /etc/network/interfaces
    - Update the line that starts with "auto" to include "ra0", for example:
    auto lo ra0
    and add the line:
    allow-hotplug ra0
    - For more information on this step, type the command:
    man 5 interfaces

    Step 9.

    Blacklist the alternate drivers:
    - As the superuser, open /etc/modprobe.d/blacklist or blacklist.conf (whichever you have)
    $ sudo nano /etc/modprobe.d/blacklist.conf
    OR
    $ su
    # nano /etc/modprobe.d/blacklist
    - Add the lines:
    Code:
    #default WUSB600 staging drivers blacklist rt2870sta blacklist rt2800usb
    Step 9 Troubleshooting:
    You may have to also blacklist a selection of additional drivers that come with your kernel. For example, the default Ubuntu 2.6.32-21-generic installation may require the following:
    Code:
    blacklist rt2860sta blacklist rt2870sta blacklist rt3090sta blacklist rt2x00usb blacklist rt2500usb blacklist rt2800usb blacklist rt73usb
    If you do a module listing, you can see the kernel object modules attached to your kernel:
    Code:
    modprobe -l
    This is a pretty long list, so let's shorten it to see what we want. One of these should do the trick:

    Code:
    modprobe -l | grep wireless modprobe -l | grep sta.ko modprobe -l | grep usb.ko
    Look for any drivers that match rtXXXXsta.ko or rtXXXXusb.ko that are NOT rt3572sta.ko and try blacklisting them as well (minus the .ko extension).


    Step 10.

    Reboot.

    Step 11.
    Open up your favourite network manager and configure your wireless connection.

    If you're still not getting a connection, repeat Step 3 to ensure your adapter is present. If it does not show, unplug it and reinsert. lsusb should now show your adapter and you should be able to connect.

    If you're STILL not getting a connection, Consider installing "Wicd", an alternative network manager. You will need to manually input "ra0" as your "Wireless interface in the Preferences pane.

    Step 12.
    Happy surfing, dude(tte)!
    Last edited by BabyStuey; 05-01-2010 at 04:38 PM.

  2. #2
    Join Date
    Apr 2010
    Beans
    22

    Re: Getting the linksys wusb600n to work!

    On step 3 i only get "linksys"
    is that alright? should i continue?

  3. #3
    Join Date
    Aug 2007
    Location
    Abu Dhabi
    Beans
    98
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Getting the linksys wusb600n to work!

    hi,

    many thanks for the intructions, tried them in 10.04 and worked perfectly, now giving 10.10 rc a run and it doesnt want to play

    i have tried with version 2.3.0.0 of the driver and the latest (2.4.something) they both result in the same error:

    Code:
    thegrantfamily@ubuntu:~/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2$ sudo makemake -C tools
    make[1]: Entering directory `/home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/tools'
    gcc -g bin2h.c -o bin2h
    make[1]: Leaving directory `/home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/tools'
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/tools/bin2h
    cp -f os/linux/Makefile.6 /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/Makefile
    make -C /lib/modules/2.6.35-22-generic/build SUBDIRS=/home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux modules
    make[1]: Entering directory `/usr/src/linux-headers-2.6.35-22-generic'
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_md5.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_sha2.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_hmac.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_aes.o
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_aes.c: In function ‘AES_GTK_KEY_WRAP’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_aes.c:2265: warning: the frame size of 1664 bytes is larger than 1024 bytes
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_aes.c: In function ‘AES_GTK_KEY_UNWRAP’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_aes.c:2348: warning: the frame size of 1168 bytes is larger than 1024 bytes
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_aes.c: In function ‘WscDecryptData’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_aes.c:1592: warning: the frame size of 1408 bytes is larger than 1024 bytes
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_aes.c: In function ‘WscEncryptData’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_aes.c:1522: warning: the frame size of 1408 bytes is larger than 1024 bytes
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/crypt_arc4.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/mlme.o
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/mlme.c: In function ‘MlmeResetRalinkCounters’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/mlme.c:895: warning: cast from pointer to integer of different size
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/mlme.c:895: warning: cast from pointer to integer of different size
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/mlme.c: In function ‘BssTableSortByRssi’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/mlme.c:6112: warning: the frame size of 1728 bytes is larger than 1024 bytes
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_wep.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/action.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_data.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/rtmp_init.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_tkip.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_aes.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_sync.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/eeprom.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_sanity.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_info.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_cfg.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_wpa.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/dfs.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/spectrum.o
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/spectrum.c: In function ‘PeerMeasureReportAction’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/spectrum.c:1977: warning: format ‘%d’ expects type ‘int’, but argument 3 has type ‘long unsigned int’
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/rtmp_timer.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/rt_channel.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_profile.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_asic.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_cmd.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/assoc.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/auth.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/auth_rsp.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/sync.o
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/sync.c: In function ‘PeerBeacon’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/sync.c:1764: warning: the frame size of 1456 bytes is larger than 1024 bytes
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/sync.c: In function ‘PeerBeaconAtJoinAction’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/sync.c:1094: warning: the frame size of 1440 bytes is larger than 1024 bytes
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/sync.c: In function ‘PeerBeaconAtScanAction’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/sync.c:764: warning: the frame size of 1376 bytes is larger than 1024 bytes
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/sync.c: In function ‘MlmeStartReqAction’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/sync.c:581: warning: the frame size of 1088 bytes is larger than 1024 bytes
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/sanity.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/rtmp_data.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/connect.o
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/connect.c: In function ‘CntlOidScanProc’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/connect.c:356: warning: the frame size of 1776 bytes is larger than 1024 bytes
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/wpa.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/ags.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/sta_cfg.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/rtmp_init_inf.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_profile.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/sta_ioctl.o
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/sta_ioctl.c: In function ‘rt_ioctl_siwencode’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/sta_ioctl.c:1484: warning: suggest parentheses around operand of ‘!’ or change ‘&’ to ‘&&’ or ‘!’ to ‘~’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/sta_ioctl.c: In function ‘rt_ioctl_iwaplist’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/sta_ioctl.c:604: warning: the frame size of 1296 bytes is larger than 1024 bytes
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/sta_ioctl.c: In function ‘rt_ioctl_siwmlme’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/sta_ioctl.c:1984: warning: the frame size of 1696 bytes is larger than 1024 bytes
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/sta_ioctl.c: In function ‘RTMPIoctlMAC’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/sta_ioctl.c:5853: warning: the frame size of 1376 bytes is larger than 1024 bytes
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/sta_ioctl.c: In function ‘RTMPIoctlE2PROM’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/sta_ioctl.c:6052: warning: the frame size of 1376 bytes is larger than 1024 bytes
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.o
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c: In function ‘duplicate_pkt’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c:477: warning: passing argument 1 of ‘memmove’ makes pointer from integer without a cast
    /usr/src/linux-headers-2.6.35-22-generic/arch/x86/include/asm/string_64.h:58: note: expected ‘void *’ but argument is of type ‘sk_buff_data_t’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c:479: warning: passing argument 1 of ‘memmove’ makes pointer from integer without a cast
    /usr/src/linux-headers-2.6.35-22-generic/arch/x86/include/asm/string_64.h:58: note: expected ‘void *’ but argument is of type ‘sk_buff_data_t’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c: In function ‘ClonePacket’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c:629: warning: assignment makes integer from pointer without a cast
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c: In function ‘update_os_packet_info’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c:651: warning: assignment makes integer from pointer without a cast
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c: In function ‘wlan_802_11_to_802_3_packet’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c:672: warning: assignment makes integer from pointer without a cast
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c: In function ‘send_monitor_packets’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c:945: warning: format ‘%d’ expects type ‘int’, but argument 3 has type ‘long unsigned int’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c: In function ‘RtmpOSNetDevDetach’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c:1694: warning: initialization discards qualifiers from pointer target type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c: In function ‘RtmpOSNetDevAttach’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_linux.c:1731: warning: initialization discards qualifiers from pointer target type
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_main_dev.o
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_main_dev.c: In function ‘MainVirtualIF_close’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../os/linux/rt_main_dev.c:117: warning: unused variable ‘Cancelled’
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/ba_action.o
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/ba_action.c: In function ‘convert_reordering_packet_to_preAMSDU_or_802_3_packet’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/ba_action.c:1553: warning: assignment makes integer from pointer without a cast
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../sta/dls.o
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.o
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c: In function ‘RTMPAllocUsbBulkBufStruct’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:52: error: implicit declaration of function ‘usb_buffer_alloc’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:52: warning: assignment makes pointer from integer without a cast
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c: In function ‘RTMPFreeUsbBulkBufStruct’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:78: error: implicit declaration of function ‘usb_buffer_free’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c: In function ‘RTMPFreeTxRxRingMemory’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:234: warning: passing argument 3 of ‘RTMPFreeUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:62: note: expected ‘UCHAR **’ but argument is of type ‘struct __TX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:241: warning: passing argument 3 of ‘RTMPFreeUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:62: note: expected ‘UCHAR **’ but argument is of type ‘struct __TX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:278: warning: passing argument 3 of ‘RTMPFreeUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:62: note: expected ‘UCHAR **’ but argument is of type ‘struct __HTTX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c: In function ‘NICInitTransmit’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:507: warning: passing argument 3 of ‘RTMPFreeUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:62: note: expected ‘UCHAR **’ but argument is of type ‘struct __TX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c: In function ‘RTMPAllocTxRxRingMemory’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:566: warning: passing argument 3 of ‘RTMPAllocUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:34: note: expected ‘VOID **’ but argument is of type ‘struct __HTTX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:596: warning: passing argument 3 of ‘RTMPAllocUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:34: note: expected ‘VOID **’ but argument is of type ‘struct __TX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:610: warning: passing argument 3 of ‘RTMPAllocUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:34: note: expected ‘VOID **’ but argument is of type ‘struct __TX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:628: warning: passing argument 3 of ‘RTMPAllocUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:34: note: expected ‘VOID **’ but argument is of type ‘UCHAR **’
    make[2]: *** [/home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.o] Error 1
    make[1]: *** [_module_/home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux] Error 2
    make[1]: Leaving directory `/usr/src/linux-headers-2.6.35-22-generic'
    make: *** [LINUX] Error 2
    thegrantfamily@ubuntu:~/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2$ sudo makemake -C tools
    make[1]: Entering directory `/home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/tools'
    gcc -g bin2h.c -o bin2h
    make[1]: Leaving directory `/home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/tools'
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/tools/bin2h
    cp -f os/linux/Makefile.6 /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/Makefile
    make -C /lib/modules/2.6.35-22-generic/build SUBDIRS=/home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux modules
    make[1]: Entering directory `/usr/src/linux-headers-2.6.35-22-generic'
      CC [M]  /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.o
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c: In function ‘RTMPAllocUsbBulkBufStruct’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:52: error: implicit declaration of function ‘usb_buffer_alloc’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:52: warning: assignment makes pointer from integer without a cast
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c: In function ‘RTMPFreeUsbBulkBufStruct’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:78: error: implicit declaration of function ‘usb_buffer_free’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c: In function ‘RTMPFreeTxRxRingMemory’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:234: warning: passing argument 3 of ‘RTMPFreeUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:62: note: expected ‘UCHAR **’ but argument is of type ‘struct __TX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:241: warning: passing argument 3 of ‘RTMPFreeUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:62: note: expected ‘UCHAR **’ but argument is of type ‘struct __TX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:278: warning: passing argument 3 of ‘RTMPFreeUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:62: note: expected ‘UCHAR **’ but argument is of type ‘struct __HTTX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c: In function ‘NICInitTransmit’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:507: warning: passing argument 3 of ‘RTMPFreeUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:62: note: expected ‘UCHAR **’ but argument is of type ‘struct __TX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c: In function ‘RTMPAllocTxRxRingMemory’:
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:566: warning: passing argument 3 of ‘RTMPAllocUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:34: note: expected ‘VOID **’ but argument is of type ‘struct __HTTX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:596: warning: passing argument 3 of ‘RTMPAllocUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:34: note: expected ‘VOID **’ but argument is of type ‘struct __TX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:610: warning: passing argument 3 of ‘RTMPAllocUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:34: note: expected ‘VOID **’ but argument is of type ‘struct __TX_BUFFER **’
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:628: warning: passing argument 3 of ‘RTMPAllocUsbBulkBufStruct’ from incompatible pointer type
    /home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.c:34: note: expected ‘VOID **’ but argument is of type ‘UCHAR **’
    make[2]: *** [/home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux/../../common/cmm_mac_usb.o] Error 1
    make[1]: *** [_module_/home/thegrantfamily/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2/os/linux] Error 2
    make[1]: Leaving directory `/usr/src/linux-headers-2.6.35-22-generic'
    make: *** [LINUX] Error 2
    thegrantfamily@ubuntu:~/Downloads/2010_0915_RT3572_Linux_STA_v2.4.0.2$ sudo modprobe rt3572sta
    FATAL: Module rt3572sta not found.
    any ideas please?

  4. #4
    Join Date
    May 2007
    Beans
    8
    Distro
    Ubuntu 7.04 Feisty Fawn

    Re: Getting the linksys wusb600n to work!

    Try this link:

    https://bugs.launchpad.net/ubuntu/+s...ux/+bug/408165
    (Nearly at the end.)

    Posting with 10.10 32bit only wusb600N V2 attached.

    Good luck.

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
  •