An open API service indexing awesome lists of open source software.

https://github.com/kimocoder/nethunter_wireless_modules


https://github.com/kimocoder/nethunter_wireless_modules

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# nethunter_wireless_modules

## How to add to kernel
Add to your drivers/net/wireless/realtek/Kconfig:

```
source "drivers/net/wireless/realtek/rtl8822bu/Kconfig"
source "drivers/net/wireless/realtek/rtl8812au/Kconfig"
source "drivers/net/wireless/realtek/rtl8188eus/Kconfig"
```

And add to your drivers/net/wireless/realtek/Makefile:

```
obj-$(CONFIG_RTL8822BU) += rtl8822bu/
obj-$(CONFIG_88XXAU) += rtl8812au/
obj-$(CONFIG_RTL8188EU) += rtl8188eus/
```

## Notes om using all modules

Only 1 driver may be added inline/built-in of rtl8812au or rtl8822bu
The rtl8188eus must always be a module.