-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from OlegH-ua/lesson04
Lesson04
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Homework: | ||
|
||
Create a simple Kernel module: | ||
|
||
1. Create a simple module (source and makefile). | ||
2. Add some debug prints. | ||
3. Check your source with the checkpatch.pl | ||
4. Add module parameter and implement different module_init return codes dependent on this parameter (OK/Error). | ||
5. Get kernel logs for both cases. And add them to projects. | ||
|
||
Example of log: | ||
``` | ||
$ sudo dmesg -c | ||
... | ||
< start log > | ||
$ sudo insmod mymodule.ko | ||
$ sudo lsmod | grep mymodule | ||
$ sudo rmmod mymodule | ||
$ sudo dmesg | ||
< end log > | ||
``` |