Aaron Smith
Aaron Smith
On Debian stretch (Linux 4.8.0.1-amd64) I got past this issue by: - patching /usr/src/linux-source-4.8/Makefile with the [patch you mentioned](http://kernel.ubuntu.com/%7Ekernel-ppa/mainline/v4.8-rc2/0002-UBUNTU-SAUCE-no-up-disable-pie-when-gcc-has-it-enabl.patch) [in issue #39](https://github.com/jurobystricky/Netgear-A6210/issues/39). - changing the symlink in /lib/modules/($uname -r)/build to...
@C0alDust The process is a little cumbersome for those not familiar with modifying and compiling source code with the standard *nix utilities. I'll do my best to break this down...
I missed a step, thanks for catching that. I also had to copy the Module.symvers file into the kernel source directory. To get that file, I installed the linux-headers package...
Take a look at the contents of /etc/apt/sources.list -- you'll see several lines similar to this, each line representing a remote package repository: deb http://ftp.us.debian.org/debian/ testing main contrib non-free To...
Did you run "sudo apt-get update" first?
Because Kali is Debian-based, it follows the same rolling release system. The changes to sources.list should work. If I get time to install a Kali VM, I'll give this a...
Was the hash in front of the deb-src line when you rand apt-get upgrade? The hash disables the line, so you'll have to remove it in order to enable the...
Try this while in the kernel source dir: cp /boot/config-$(uname -r) . This will eliminate the need for those two commands.
You missed the " ." at the end of the command I posted above.
Looks like the kernel source is missing a file that would normally be there after building the kernel. Try running make in the kernel source directory before building the driver....