Skip to content

Commit

Permalink
Merge pull request #63 from OlegH-ua/lesson04
Browse files Browse the repository at this point in the history
Lesson04
  • Loading branch information
OlegH-ua authored Nov 3, 2018
2 parents d025372 + 14efd2e commit 9ef2c88
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions 04-KernelModule/README.md
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 >
```

0 comments on commit 9ef2c88

Please sign in to comment.