Add 'Linux kernel modules'

Triss 2021-07-30 17:53:19 +00:00
parent e8bb880995
commit 83d3c3c71c
1 changed files with 7 additions and 0 deletions

7
Linux-kernel-modules.md Normal file

@ -0,0 +1,7 @@
### Available modules
### Compiling and loading the modules
The source code of the modules can be found in the `host/modules/` folder in the source tree. A `Makefile` is made available to compile these for the Linux kernel you are currently running. Linux 5.4 and up have been tested to work.
Loading these modules can be done using `sudo insmod <modulename>.ko`, and unloaded using `sudo rmmod <modulename>`. Note that all modules depend on the `dmj` module, so the latter one has to be loaded first, and unloaded last.