杞人的优雅 杞人的优雅

rtl8192eu linux drivers

in 默认分类read (6669) 站长qwertyuildy 文章转载请注明来源!

rtl8192eu linux drivers

NOTE: This branch is based on Realtek's driver versioned 4.4.1. master is based on 4.3.1.1 originally.

The official drivers for D-Link DWA-131 Rev E, with patches to keep it working on newer kernels.
Also works on Rosewill RNX-N180UBE v2 N300 Wireless Adapter and TP-Link TL-WN821N V6.

NOTE: This is just a "mirror". I have no knowledge about this code or how it works. Expect no support from me or any contributors here. I just think GitHub is a nicer way of keeping track of this than random forum posts and precompiled binaries being sent by email. I don't want someone else to have to spend 5 days of googling and compiling with random patches until it works.

Source for the official drivers

Official drivers were downloaded from D-Link Australia. D-Link USA and the european countries I checked only lists revision A and B. Australia lists all three.

In addition, you can find the contents of this version in the initial commit of this repo: 1387cf623d54bc2caec533e72ee18ef3b6a1db29

Patches

You can see the applied patches, their sources and/or motivation by looking at the commits. The master branch will mostly be kept clean with a single commit per patch, except for Pull Requests. You can review commit by commit and then record the SHA in order to get a safe reference to use. As long as the SHA stays the same you know that what you get has been reviewed by you.

Note that updates to this README will show up as separate commits. I will not mix changes to this file with changes to the code in case you want to mirror this without the README.

Building and installing using DKMS

This tree supports Dynamic Kernel Module Support (DKMS), a system for
generating kernel modules from out-of-tree kernel sources. It can be used to
install/uninstall kernel modules, and the module will be automatically rebuilt
from source when the kernel is upgraded (for example using your package manager).

  1. Install DKMS and other required tools

    • for normal Linux systems
    $ sudo apt-get install git linux-headers-generic build-essential dkms;
* for Raspberry Pi
$ sudo apt-get install git raspberrypi-kernel-headers build-essential dkms;
  1. Clone this repository and change your directory to cloned path.

    $ git clone https://github.com/Mange/rtl8192eu-linux-driver;
    $ cd rtl8192eu-linux-driver;
  2. The Makefile is preconfigured to handle most x86/PC versions. However, if you are compiling for something other than an intel x86 architecture, you need to first select the platform.

    • for the Raspberry Pi, you need to set the I386 to n and the ARM_RPI to y:
    ...
    CONFIG_PLATFORM_I386_PC = n
    ...
    CONFIG_PLATFORM_ARM_RPI = y
* for arm64 devices (e.g. Orange Pi PC 2):
...
CONFIG_PLATFORM_I386_PC = n
...
CONFIG_PLATFORM_ARM_AARCH64 = y
  1. Add the driver to DKMS. This will copy the source to a system directory so
  2. it can used to rebuild the module on kernel upgrades.
$ sudo dkms add .;
  1. Build and install the driver.

    $ sudo dkms install rtl8192eu/1.0;
  2. Distributions based on Debian & Ubuntu have RTL8XXXU driver present & running in kernelspace. To use our RTL8192EU driver, we need to blacklist RTL8XXXU.

    $ echo "blacklist rtl8xxxu" | sudo tee /etc/modprobe.d/rtl8xxxu.conf;
  3. Force RTL8192EU Driver to be active from boot.

    $ echo -e "8192eu\n\nloop" | sudo tee /etc/modules;
  4. Newer versions of Ubuntu has weird plugging/replugging issue (Check #94). This includes weird idling issues, To fix this:

    $ echo "options 8192eu rtw_power_mgnt=0 rtw_enusbss=0" | sudo tee /etc/modprobe.d/8192eu.conf;
  5. Update changes to Grub & initramfs

    $ sudo update-grub; sudo update-initramfs -u;
  6. Reboot system to load new changes from newly generated initramfs.

    $ systemctl reboot -i;
  7. Check that your kernel has loaded the right module:

    $ sudo lshw -c network;

You should see the line driver=8192eu

If you wish to uninstall the driver at a later point, use
_sudo dkms uninstall rtl8192eu/1.0_. To completely remove the driver from DKMS use
_sudo dkms remove rtl8192eu/1.0 --all_.

Submitting patches

  1. Fork repo
  2. Do your patch in a topic branch
  3. Open a pull request on GH, or send it by email to Magnus Bergmark <magnus.bergmark@gmail.com>.
  4. I'll squash your commits when everything checks out and add it to master.

Copyright and licenses

The original code is copyrighted, but I don't know by whom. The driver download does not contain license information; please open an issue if you are the copyright holder.

Most C files are licensed under GNU General Public License (GPL), version 2.

jrotty WeChat Pay

微信打赏

jrotty Alipay

支付宝打赏

文章二维码

扫描二维码,在手机上阅读!

默认分类
最后由qwertyuildy修改于2019-07-02 18:44

此处评论已关闭

前篇 后篇
雷姆
拉姆