kimocoder / realtek_rtwifi

Realtek RTL8xxxU
https://www.aircrack-ng.org
68 stars 14 forks source link

Makefile assumes kernel already has RTL8XXXU enabled #24

Open brentr opened 2 years ago

brentr commented 2 years ago

First line of Makefile is: obj-$(CONFIG_RTL8XXXU) += rtwifi.o However, usually the kernel we're building against does not (yet) have RTL8XXXU support. Resulting in nothing being built.

Fix is to change that first line to: obj-m += rtwifi.o