1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:27:35 +00:00

Base: Describe kernel modules, syscalls, and programs

This commit is contained in:
Conrad Pankoff 2019-12-24 14:10:39 +11:00 committed by Andreas Kling
parent efa7141d14
commit 033de7efe2
5 changed files with 181 additions and 0 deletions

View file

@ -0,0 +1,25 @@
## Name
modload - load a kernel module
## Synopsis
```**sh
$ modload <path>
```
## Description
Load a kernel module specified by *path*.
## Examples
```sh
$ modload /mod/TestModule.o
```
## See also
* [`modunload`(1)](modunload.md)
* [`module_load`(2)](../man2/module_load.md)
* [`kernel_modules`(7)](../man7/kernel_modules.md)

View file

@ -0,0 +1,25 @@
## Name
modunload - unload a kernel module
## Synopsis
```**sh
$ modunload <name>
```
## Description
Unload a kernel module specified by *name*.
## Examples
```sh
$ modunload TestModule
```
## See also
* [`modload`(1)](modload.md)
* [`module_unload`(2)](../man2/module_unload.md)
* [`kernel_modules`(7)](../man7/kernel_modules.md)