Skip to content

Commit

Permalink
Merge remote-tracking branch 'main/master' into Oleg.Khokhlov
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegH-ua committed Oct 27, 2018
2 parents 66a7761 + e624709 commit 14efd2e
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 14efd2e

Please sign in to comment.