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

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

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
```