https://github.com/d2verb/kmodinit
tiny tool for writing a kernel module
https://github.com/d2verb/kmodinit
Last synced: about 1 month ago
JSON representation
tiny tool for writing a kernel module
- Host: GitHub
- URL: https://github.com/d2verb/kmodinit
- Owner: d2verb
- Created: 2018-04-27T15:39:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-27T15:46:23.000Z (about 8 years ago)
- Last Synced: 2025-03-05T20:52:59.630Z (over 1 year ago)
- Language: Shell
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## What's this
Tiny tool for writing a kernel module
## Usage
```
$ kmodinit hello
$ ls ./
Makefile hello.c
$ make
$ make insmod
$ lsmod | grep hello
hello 857 0
$ make rmmod
$ lsmod | grep hello
```