Replies: 3 comments 3 replies
-
The 88x2bu driver is for adapters that use the 8812bu abd 8822bu chipsets.
Different chipsets. Reaktek has a history of creating a lot of different chipsets... unnecessarily in my opinion.
That is not practical. What you need is the correct driver: https://github.com/morrownr/8821cu Let me know if this driver works and don't forget to uninstall any drivers you have already installed. Also, to avoid this kind of confusion, you can use adapters that use in-kernel drivers: https://github.com/morrownr/USB-WiFi Nick |
Beta Was this translation helpful? Give feedback.
-
Okay, I see the processor is a Rockchip and the os is DietPi. For future reference, that is VERY important information to pass on. The best thing you can do right now is run $ sudo ./remove-driver.sh That should clean things up and let us start over. To solve this mystery, we need to figure out the exact Rockchip processor we are dealing with. In the Makefile I see references to the following: RK2818 I need you to research the issue and figure out exactly what Rockchip processor you have. It could be one of the above or even a new one. Once that information is at hand, I can guide you though what needs to be done. Different processors require different compiler flags. Step 8 of the Installation instructions as outlined in README.md, has a special script to run if you are running Raspberry Pi hardware. That is necessary because the Raspberry Pi runs an ARM processor. This driver defaults to x86/AMD64 processors and we have to make changes for other processors. I support Raspberry Pi's because I have a couple of them and folks from the community helped me put those scripts together. Regards |
Beta Was this translation helpful? Give feedback.
-
Okay, RK3328. The Rockchip configuration sections in the current Makefile are for earlier processors and are supporting Android. That means we have to figure it out. My best guess at this point is that we need to add a section that looks something like this: ifeq ($(CONFIG_PLATFORM_ARM64_RK3328), y) This is as far as I can go for today as I will be busy for the next 2-3 days but maybe this gives you an idea. It might be a good idea to go to the support forum for the company that sells the hardware and see if you can get some information there. Regards |
Beta Was this translation helpful? Give feedback.
-
Why is the 88x2bu driver not available for the 8822cu module (0bda:c82c)?
What is the difference between the cu and the bu?
Is it possible to make the 8822cu work with the 88x2bu driver?
Thanks for your support.
Beta Was this translation helpful? Give feedback.
All reactions