Add 8812eu WiFi adapter support to gk7205v200 FPV firmware #70
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR fixes an issue where 8812eu WiFi adapters (USB ID
0bda:a81a
) were detected bylsusb
but not functional withiwconfig
on gk7205v200 FPV firmware builds.Problem
Users reported that after updating to the latest gk7205v200-nor-fpv.tgz firmware, their 8812eu WiFi adapters stopped working. The adapters were detected by the system but the wireless interface was not available because the required driver module was missing from the firmware.
Root Cause
The gk7205v200 FPV configuration only included the
BR2_PACKAGE_RTL8812AU_OPENIPC
driver package, which supports 8812au adapters but not 8812eu variants. The 8812eu adapters require theBR2_PACKAGE_RTL88X2EU_OPENIPC
driver package.Solution
Added 8812eu driver support: Included
BR2_PACKAGE_RTL88X2EU_OPENIPC=y
in the gk7205v200 FPV configuration to build the 8812eu driver module.Created device-specific directory: Added
devices/gk7205v200_fpv/
with complete build structure so the build system can apply device-specific customizations.Added USB wireless auto-detection: Created
/etc/wireless/usb
script that automatically detects the connected adapter type and loads the appropriate driver:0bda:a81a
→ loads8812eu
driver0bda:8812
,0bda:881a
,0b05:17d2
,2357:0101
,2604:0012
→ loads8812au
driverFiles Changed
devices/common/br-ext-chip-goke/configs/gk7205v200_fpv_defconfig
- Added 8812eu driver packagedevices/gk7205v200_fpv/
- New device directory with USB wireless management scriptThe firmware will now automatically support both 8812au and 8812eu WiFi adapters without any user intervention.
Fixes #61.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.