From 83d3c3c71c66e0e12f193046ad5c35a35cf50aeb Mon Sep 17 00:00:00 2001 From: sys64738 Date: Fri, 30 Jul 2021 17:53:19 +0000 Subject: [PATCH] Add 'Linux kernel modules' --- Linux-kernel-modules.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Linux-kernel-modules.md diff --git a/Linux-kernel-modules.md b/Linux-kernel-modules.md new file mode 100644 index 0000000..4e4013d --- /dev/null +++ b/Linux-kernel-modules.md @@ -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 .ko`, and unloaded using `sudo rmmod `. Note that all modules depend on the `dmj` module, so the latter one has to be loaded first, and unloaded last. \ No newline at end of file