https://github.com/rprata/linux-device-driver-tutorial
This tutorial discusses technical issues to develop your own linux device driver. The aim of this tutorial is to provide, easy and practical examples so that everybody can understand the concepts in a simple manner.
https://github.com/rprata/linux-device-driver-tutorial
c driver-programming linux-device-drivers linux-kernel operating-system
Last synced: 30 days ago
JSON representation
This tutorial discusses technical issues to develop your own linux device driver. The aim of this tutorial is to provide, easy and practical examples so that everybody can understand the concepts in a simple manner.
- Host: GitHub
- URL: https://github.com/rprata/linux-device-driver-tutorial
- Owner: rprata
- License: mit
- Created: 2019-03-29T19:20:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-19T02:16:26.000Z (almost 4 years ago)
- Last Synced: 2024-10-29T20:33:03.644Z (6 months ago)
- Topics: c, driver-programming, linux-device-drivers, linux-kernel, operating-system
- Language: C
- Homepage:
- Size: 58.6 KB
- Stars: 32
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Linux Device Driver Tutorial #
## What is it? ##
This tutorial discusses technical issues to develop your own linux device driver. The aim of this tutorial is to provide, easy and practical examples so that everybody can understand the concepts in a simple manner. The work is divided into chapters that starts in a simple way and gradually covers more issues related to the development of Linux kernel modules.## Who is this tutorial for? ##
People interested in understanding more about how the Linux kernel works and developing kernel modules.## Requirements ##
* A computer or Virtual Machine running a linux distro (we recommend [Ubuntu <3](https://www.ubuntu.com));
* [GCC](https://gcc.gnu.org);
* A text editor. [vim](https://www.vim.org/), [emacs](https://www.gnu.org/s/emacs/), [sublime text](https://www.sublimetext.com);
* Basic knowledge of linux (you need to know how to use linux command line);
* Basic knowledge of C;## Chapters ##
1. [Introduction](chapters/introduction/introduction.md)
2. [First Driver](chapters/first-driver/first-driver.md)
3. [Passing Arguments to Device Driver](chapters/module-parameter/module-parameter.md)## License ##
Linux Device Driver Tutorial may be modified and distributed under the terms of the MIT license. See the LICENSE file for details.