Recalbox Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • recalbox.com
    • Gitlab repository
    • Documentation
    • Discord

    Trying to get DWA-131 adapter to work

    Recalbox General
    trying dwa-131 adapter
    2
    11
    3089
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • alcartur
      alcartur last edited by

      Apparently the driver could be outdated and does not include the ID(2001:3319) from the new dongle revision (E).

      On this post https://www.raspberrypi.org/forums/viewtopic.php?f=28&t=33588&start=25 MrEngman explains it and compiles the driver inserting the new ID so the adapter can be recognized.

      Anyway this new version can be included? Is there a way I can do it, or just the devs?

      Substring 1 Reply Last reply Reply Quote 0
      • Substring
        Substring @alcartur last edited by

        @alcartur hey !
        First of all, glad you made your part of the work ! This is really helpful

        Now : we're still on the 4.1 kernel branch. My work to move to 4.9 is over, but i still have quite some work on other boards.

        So here is the trick :

        • if you do need the driver now, we can patch the kernel to add your id
        • if you're not in a hurry and enjoy the on-board pi3 wifi, make sure it's supported in kernel 4.9
        • if you are a true fearless viking in your mind, you can submit a merge request on our gitlab. If you want to go this way, i can help you

        Former dev - Please reply with @substring so that i am notified when you answer me
        Ex dev - Merci de me répondre en utilisant @substring pour que je sois notifé

        alcartur 1 Reply Last reply Reply Quote 0
        • alcartur
          alcartur @Substring last edited by

          @substring Hello,

          Thanks for the quick reply!

          D-LINK seems to make their driver for this dongle available for compilation here: ftp://files.dlink.com.au/products/DWA-131/REV_E/Drivers/DWA-131_Linux_driver_v4.3.1.1.zip

          A preview from their readme file:

          Fedora 14.0
          
          Install:
          1. su-> enter your root password(if need to do 2. and 3.)
          2. yum install gcc(if necessary)
          3. yum install kernel-PAE-devel(if kernel doesnt support PAE, type : yum install kernel-devel)(if necessary)
          4. tar zxvf 20140812_rtl8192EU_linux_v4.3.1.1_11320.tar.gz
             and cd to 20140812_rtl8192EU_linux_v4.3.1.1_11320
          5. make
          6. su-> enter your root password(if not do 1. 2. 3.)
          7. make install
          

          I don't know if this is helpful too.

          • if you do need the driver now, we can patch the kernel to add your id (This would be my prefered choice)
          • if you're not in a hurry and enjoy the on-board pi3 wifi, make sure it's supported in kernel 4.9 (I'd like to use the dongle, because I'm getting only 700kbps-1mbps when transfering files through the internal wifi, since the pi is on the other room)
          • if you are a true fearless viking in your mind, you can submit a merge request on our gitlab. If you want to go this way, i can help you (I think this would be a very long journey until getting this to work haha, but if the first choice isn't possible, I'll take it)

          Thanks again!

          Substring 1 Reply Last reply Reply Quote 0
          • Substring
            Substring @alcartur last edited by

            @alcartur there is no kernel patch in what i've read 😞

            Former dev - Please reply with @substring so that i am notified when you answer me
            Ex dev - Merci de me répondre en utilisant @substring pour que je sois notifé

            alcartur 1 Reply Last reply Reply Quote 0
            • alcartur
              alcartur @Substring last edited by

              @substring I see, so the only way is the option 3 then? If so, could you please help me with some macro steps that I would need to follow?

              Substring 1 Reply Last reply Reply Quote 0
              • Substring
                Substring @alcartur last edited by

                @alcartur first, if you find me a kernel patch or which file has to be patched, I can do it. I just don't want to spend time looking for that by myself as i have a too little knowledge in kernel code.

                Former dev - Please reply with @substring so that i am notified when you answer me
                Ex dev - Merci de me répondre en utilisant @substring pour que je sois notifé

                alcartur 1 Reply Last reply Reply Quote 0
                • alcartur
                  alcartur @Substring last edited by alcartur

                  @substring Thx for the help, but I got it working now!

                  There are a few things I did:

                  • Downloaded the .ko module from : http://www.fars-robotics.net/8192eu-4.4.13-v7-894.tar.gz and placed the 8192eu.ko file under /lib/modules/4.4.13-v7/kernel/drivers/net/wireless/realtek/rtl8192eu/
                  • Created a file 8192eu.conf on /etc/modprobe.d/ with the following content:
                  options 8192eu rtw_power_mgnt=0 rtw_enusbss=0
                  
                  • Edited the file /etc/network/interfaces and it looks like this now:
                  # Configure Loopback
                  auto lo
                  iface lo inet loopback
                  
                  auto wlan1
                  iface wlan1 inet dhcp
                  allow-hotplug wlan1
                  wpa-ssid xxxxxxx
                  wpa-psk xxxxxxxxxx
                  

                  The only thing left now was to include the driver dependencies on the modules.dep file which could be done automatically by running depmod but I don't know why recalbox doesn't have this command, so I deduced that maybe this driver dependencies were the same as the 8192cu.ko so I just used the same dependencies for this one and it worked.

                  • Just place this line at the end of the file /lib/modules/4.4.13-v7/modules.dep
                  kernel/drivers/net/wireless/realtek/rtl8192eu/8192eu.ko: kernel/net/wireless/cfg80211.ko kernel/net/rfkill/rfkill.ko
                  

                  After doing all of this I rebooted and the wifi didn't seem to work, but just shutting it off and on again through the interface made it work, I don't know why, but aparently, the wifi wasn't working at boot anymore. So to fix this I just created a boot script

                  • At the dir /etc/init.d I created a file S99MyScript with the following content and made it runnable with chmod +x S99MyScript
                  #!/bin/bash
                  case "$1" in
                     start)
                             echo "starting wifi"
                           /usr/bin/connmanctl enable wifi
                           /usr/bin/connmanctl scan wifi
                           ;;
                     stop)
                           Add your shutdown code here!
                           ;;
                     restart|reload)
                             echo "starting wifi"
                          /usr/bin/connmanctl enable wifi
                         /usr/bin/connmanctl scan wifi
                           ;;
                     *)
                  esac
                  
                  exit $?
                  
                  

                  It seems that the script S09wifi already does this, but it has some conditions and I don't want to debug it.

                  From what I remember this was all I did, maybe you guys can implement something like this on the next release?

                  Thanks again for the patience and replies.

                  Substring 1 Reply Last reply Reply Quote 0
                  • Substring
                    Substring @alcartur last edited by

                    @alcartur i wouldn't add such a specific thing for your adapter only. For custom bootscripts, the S99custom calls ~\custom.sh, take advantage of it

                    I.d still need the edits made to the source code of the kernel module.

                    Do you know if your wifi adapyer works out of the box in kernel 4.9 ?

                    Former dev - Please reply with @substring so that i am notified when you answer me
                    Ex dev - Merci de me répondre en utilisant @substring pour que je sois notifé

                    alcartur 1 Reply Last reply Reply Quote 0
                    • alcartur
                      alcartur @Substring last edited by

                      @substring There weren't source code edits.

                      At first I thought that the module used by my dongle was the rtl8192cu, which exists on the kernel, this was true only on the previous revisions of my dongle, that's why the french dude mentioned it, the E revision now uses the rtl8192eu which doesn't exist on the kernel, so what I did was to place the new 8192eu.ko module on the kernel.

                      Do you know if your wifi adapyer works out of the box in kernel 4.9 ?

                      I guess it doesn't.
                      Here is a discussion on the reddit talking about why this driver doesn't exist on the kernel by default: https://www.reddit.com/r/linux/comments/47bggn/why_doesnt_the_rtl8192eu_be_supported_by_default/

                      Substring 1 Reply Last reply Reply Quote 0
                      • Substring
                        Substring @alcartur last edited by

                        @alcartur ok, i.ve been searching a little more, it's gonna be much more complex than just adding a device id in an existing driver (which is what i had hoped so far ...)

                        Former dev - Please reply with @substring so that i am notified when you answer me
                        Ex dev - Merci de me répondre en utilisant @substring pour que je sois notifé

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post

                        Want to support us ?

                        66
                        Online

                        99.6k
                        Users

                        28.1k
                        Topics

                        187.1k
                        Posts

                        Copyright © 2021 recalbox.com