You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: