doomers / linux-module

It consist of a basic hello world linux module

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

linux-module

linux modules

How to compile

make

How to compile new modules

  1. Create a new Module
  2. Add these to Makefile obj-m+= "your-module-name.o"
  3. $ make

How to load module in kernel

insmod "your-module-name.ko"

How to remove module from Kernel

rmmod "your-kernel-name.ko"

List of all the Modules in Kernel

lsmod

How to contribute

  • Fork the project on github.
  • Create a module branch.
  • Please keep PR titles easy to read and descriptive of changes, this will make them easier to merge.
  • Pull requests must be made against development branch. Any other branch (unless specified by the maintainers) will get rejected.
  • Have fun!

Authors

License

This linux modules is open-sourced software licensed under the Apache License.

About

It consist of a basic hello world linux module

License:Apache License 2.0


Languages

Language:C 79.8%Language:Makefile 20.2%