Creating Linux Kernel Module made easy
Can you believe that a two line C source code can become a Linux module?
The lsmod command show that your module has been loaded:
Source: Writing device drivers in Linux: A brief tutorial
Recommended: Writing a Simple USB Driver
$ cat simplest_module.c
#include <linux/module.h>
MODULE_LICENSE("GPL");
$ cat Makefile
obj-m := simplest_module.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
Just "make".
$ make
To install your brand new bogus module:
$ sudo insmod simplest_module.ko
The lsmod command show that your module has been loaded:
$ lsmod |grep simplest_moduleTo remove the module:
simplest_module 689 0
$ sudo rmmod simplest_moduleIt is very simple to create a Linux Kernel Module. If you want more than a do nothing module, follow the links:
Source: Writing device drivers in Linux: A brief tutorial
Recommended: Writing a Simple USB Driver