Skip to content

Commit

Permalink
Improve & Update README.md
Browse files Browse the repository at this point in the history
This is some improvements as you asked in doomers#1
  • Loading branch information
merzak7 committed Oct 8, 2017
1 parent 27ba6ff commit 18f7bd6
Showing 1 changed file with 20 additions and 26 deletions.
46 changes: 20 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,33 @@
# linux-module
linux modules

## How to compile: <br />
$ make
## How to compile
`make`

## How to compile new modules: <br />
1.) Create a new Module <br />
2.) add these to Makefile <br />
obj-m+= "your-module-name.o" <br />
3.) $ 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: <br />
$ insmod "your-module-name.ko"
## How to load module in kernel
`insmod "your-module-name.ko"`

## How to remove module from Kernel: <br />
$ rmmod "your-kernel-name.ko"
## How to remove module from Kernel
`rmmod "your-kernel-name.ko"`

## List of all the Modules in Kernel: <br />
$ lsmod
## List of all the Modules in Kernel
`lsmod`

## Contributing
## 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!
- 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
* **Rahul Tuteja** - [doomers](https://github.com/doomers)




## License
This linux modules is open-sourced software licensed under the [Apache License](LICENSE).

0 comments on commit 18f7bd6

Please sign in to comment.