An open API service indexing awesome lists of open source software.

https://github.com/agherzan/dummy_lkm

Dummy loadable kernel module
https://github.com/agherzan/dummy_lkm

Last synced: 2 months ago
JSON representation

Dummy loadable kernel module

Awesome Lists containing this project

README

          

# dummy_lkm
This is a dummy Loadable Kernel Module, just for testing and learning purposes.

Compile:
`KSRC=/home/andrei/kernel/src make`

Adjust your `KSRC` accordingly.

Load:
`insmod Hello.ko param_var=123`

`123` is an arbitrary number.

Remove:
`rmmod Hello`

Check dmesg for the messages.