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
- Host: GitHub
- URL: https://github.com/agherzan/dummy_lkm
- Owner: agherzan
- Created: 2016-10-03T12:24:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-03T12:25:12.000Z (over 9 years ago)
- Last Synced: 2025-03-03T02:22:22.292Z (over 1 year ago)
- Language: C
- Size: 1000 Bytes
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.