Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate Realtek out-of-tree WiFi chipset drivers #5

Merged
merged 27 commits into from
Apr 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d225d3e
Implement driver from https://github.com/aircrack-ng/rtl8812au
spockfish Feb 17, 2021
997ec12
Implement driver from https://github.com/aircrack-ng/rtl8812au
spockfish Feb 17, 2021
abefa5d
Merge branch 'rpi-5.10-realteks' of github.com:RoPieee/linux into rpi…
spockfish Feb 23, 2021
99e258b
Implement driver from https://github.com/Mange/rtl8192eu-linux-driver
spockfish Feb 23, 2021
5348aec
Implement driver from https://github.com/lwfinger/rtl8723bu
spockfish Feb 23, 2021
fb9f57c
Implement driver from https://github.com/lwfinger/rtl8723bu (2)
spockfish Feb 23, 2021
91a3c7d
Implement driver from https://github.com/cilynx/rtl88x2bu
spockfish Feb 24, 2021
d0bcde4
Implement driver from https://github.com/cilynx/rtl88x2bu (2)
spockfish Feb 24, 2021
b1e6f0c
Implement driver from https://github.com/aircrack-ng/rtl8812au
spockfish Feb 17, 2021
2487ba3
Implement driver from https://github.com/Mange/rtl8192eu-linux-driver
spockfish Feb 23, 2021
0c1c6cf
Implement driver from https://github.com/lwfinger/rtl8723bu
spockfish Feb 23, 2021
03f02a0
Implement driver from https://github.com/lwfinger/rtl8723bu (2)
spockfish Feb 23, 2021
7c06311
Implement driver from https://github.com/cilynx/rtl88x2bu
spockfish Feb 24, 2021
58b464a
Implement driver from https://github.com/cilynx/rtl88x2bu (2)
spockfish Feb 24, 2021
c7df1e2
Merge branch 'rpi-5.10-realteks' of github.com:RoPieee/linux into rpi…
spockfish Feb 28, 2021
307f43d
Merge branch 'rpi-5.10.y' into rpi-5.10-realteks
Mar 28, 2021
8377fe4
Implement driver from https://github.com/aircrack-ng/rtl8812au
spockfish Feb 17, 2021
2ef5496
Implement driver from https://github.com/Mange/rtl8192eu-linux-driver
spockfish Feb 23, 2021
21456ff
Implement driver from https://github.com/lwfinger/rtl8723bu
spockfish Feb 23, 2021
4f25cff
Implement driver from https://github.com/lwfinger/rtl8723bu (2)
spockfish Feb 23, 2021
e53d8af
Implement driver from https://github.com/cilynx/rtl88x2bu
spockfish Feb 24, 2021
0fc710e
Implement driver from https://github.com/cilynx/rtl88x2bu (2)
spockfish Feb 24, 2021
de97b63
Implement driver from https://github.com/lwfinger/rtl8723bu
spockfish Feb 23, 2021
0b82a6b
Implement driver from https://github.com/lwfinger/rtl8723bu (2)
spockfish Feb 23, 2021
a68c32e
Merge branch 'rpi-5.10-realteks' of github.com:RoPieee/linux into rpi…
spockfish Apr 8, 2021
72edefa
Merge branch 'rpi-5.10.y' into rpi-5.10-realteks
spockfish Apr 8, 2021
78917ea
enable the RTL8812A module as we need this for the Allo dual band WiF…
spockfish Apr 8, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions drivers/net/wireless/realtek/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,9 @@ source "drivers/net/wireless/realtek/rtl818x/Kconfig"
source "drivers/net/wireless/realtek/rtlwifi/Kconfig"
source "drivers/net/wireless/realtek/rtl8xxxu/Kconfig"
source "drivers/net/wireless/realtek/rtw88/Kconfig"
source "drivers/net/wireless/realtek/rtl8812au/Kconfig"
source "drivers/net/wireless/realtek/rtl8192eu/Kconfig"
source "drivers/net/wireless/realtek/rtl8723bu/Kconfig"
source "drivers/net/wireless/realtek/rtl88x2bu/Kconfig"

endif # WLAN_VENDOR_REALTEK
4 changes: 4 additions & 0 deletions drivers/net/wireless/realtek/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@ obj-$(CONFIG_RTL8187) += rtl818x/
obj-$(CONFIG_RTLWIFI) += rtlwifi/
obj-$(CONFIG_RTL8XXXU) += rtl8xxxu/
obj-$(CONFIG_RTW88) += rtw88/
obj-$(CONFIG_88XXAU) += rtl8812au/
obj-$(CONFIG_RTL8192EU) += rtl8192eu/
obj-$(CONFIG_RTL8723BU) += rtl8723bu/
obj-$(CONFIG_RTL8822BU) += rtl88x2bu/

6 changes: 6 additions & 0 deletions drivers/net/wireless/realtek/rtl8192eu/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
config RTL8192EU
tristate "Realtek 8192E USB WiFi"
depends on USB
help
Help message of RTL8192EU

Loading