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
I just found out how to install these drivers on red hat-based distros: you just need to change the seventh line (the one that says KERNEL_DIR = /usr/src/linux-headers-$(KVERSION)/) to KERNEL_DIR = /usr/src/kernels/$(KVERSION)/
Also make sure that you have kernel-devel installed by using sudo dnf install kernel-devel
Maybe the author could add some logic to the makefile to detect if it's being executed on a debian based distro (which is what this makefile seems to be aimed at) or a redhat based distro.
The text was updated successfully, but these errors were encountered:
I just found out how to install these drivers on red hat-based distros: you just need to change the seventh line (the one that says
KERNEL_DIR = /usr/src/linux-headers-$(KVERSION)/
) toKERNEL_DIR = /usr/src/kernels/$(KVERSION)/
Also make sure that you have kernel-devel installed by using
sudo dnf install kernel-devel
Maybe the author could add some logic to the makefile to detect if it's being executed on a debian based distro (which is what this makefile seems to be aimed at) or a redhat based distro.
The text was updated successfully, but these errors were encountered: