Open TheOneWhoseUsernameWasTaken opened 4 years ago
Next time you should use/add the USB id in the title.
0bda:c811
is part of the vanilla rtl88cu device driver from Realtek
either use
https://github.com/ulli-kroll/rtl8821cu
or this branch
https://github.com/ulli-kroll/rtw88-usb/tree/development/chipset/rtl8822cu
Well, the manufacturer's own data sheet states as chipset: "RTL8811AU". And Google then led me here.
None of the drivers you linked to will work for me. First one doesn't even build:
# LC_ALL=C make
make ARCH=armv7l CROSS_COMPILE= -C /lib/modules/5.4.51-v7l+/build M=/root/rtl8821cu modules
make[1]: Entering directory '/usr/src/linux-headers-5.4.51-v7l+'
Makefile:648: arch/armv7l/Makefile: No such file or directory
make[1]: *** No rule to make target 'arch/armv7l/Makefile'. Stop.
make[1]: Leaving directory '/usr/src/linux-headers-5.4.51-v7l+'
make: *** [Makefile:480: modules] Error 2
And the second's build process doesn't match the instructions, and the final modules have unknown symbols. See: https://github.com/ulli-kroll/rtw88-usb/issues/10
@TheOneWhoseUsernameWasTaken If you have a arm7l userland with an arm64 kernel you may have to install the arm64 headers on your rpi4 to get arm64 kernel headers installed.
Use this script to do that: https://gist.github.com/satmandu/a507c59d84737f6d29ff353395819d51
Just as a quick update from my end: I couldn't get it to work, and the project deadline was approaching, so I spend another whopping 12 bucks and got myself a different wifi adapter. Now I'm using an Edimax EW-7711UAn V2 (usb id 7392:7710) which seems to use a Mediatek chipset (driver mt7601u). And it just works. Out of the box.
I am actually having this issue with a ALFA AWUS036ACH with Arch Linux... Anyone using Arch?
Hello!
I'm trying to get a Logilink WL0238 adapter (rtl8811au) to work on a RPi4. I built the module according the instructions, with one seemingly necessary deviation: The instructions say that for the Pi4, I need to to build the ARM64 module. But I'm using the normal 32bit Raspbian (now Pi OS), so I went with the Pi2 sed-command.
I also disabled the built-in wifi by blacklisting brcmfmac and brcmutil. The reason I want to use an USB adapter is that I had reliability issues with those, so I wanted to test a different adapter with a real antenna.
I ran the dkms-install.sh command, it completed without errors, and after a reboot, I could load the module. But no wifi interface device seems to show up. 'iw dev' has no output, the desktop GUI says it can't detect any wifi devices.
What am I doing wrong?