Merge branch 'master' of github.com:cirosantilli/linux-kernel-module-cheat

This commit is contained in:
Ciro Santilli
2017-12-02 09:09:50 +00:00
4 changed files with 20 additions and 15 deletions

View File

@@ -2,7 +2,7 @@
This method runs the kernel modules directly on your host computer without a VM, and saves you the compilation time and disk usage of the virtual machine method.
It has however severe limitations, and you will soon see that the time and disk usage are well worth it:
It has however severe limitations, and you will soon see that the compilation time and disk usage are well worth it:
- can't control which kernel version and build options to use. So some of the modules will likely not compile because of kernel API changes, since [the Linux kernel does not have a stable kernel module API](https://stackoverflow.com/questions/37098482/how-to-build-a-linux-kernel-module-so-that-it-is-compatible-with-all-kernel-rele/45429681#45429681).
- bugs can easily break you system. E.g.: