Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve & Update README.md #5

Merged
merged 1 commit into from
Oct 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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).