Linux Device Driver Programming Lecture 27- What is device driver?
What is device driver? From this article onwards, let's explore about Device drivers. What is a device driver? A device driver is a piece of code that…
What is device driver? From this article onwards, let's explore about Device drivers. What is a device driver? A device driver is a piece of code that…
Debugging with Printk In this article, we are going to explore debugging with printk. printf is one of the best debugging tool we have in user-level applications.…
Building In tree module In this article, let's understand In-tree building. We are going to build our kernel module by adding our kernel module inside the Linux…
How to create Makefile In the previous article, we built our kernel module and tested it on the target. We used this long command(shown in Figure 1) in…
Testing of an LKM on target In the previous article, we successfully built our kernel module for our host system. Now, let's explore how to build and…
Compilation and testing of an LKM In the previous article, we delved into the build command. Now, in this article, we'll walk through the process of building…