blob: e741f3ae1f6942f7651f0aa22087f01c0bf85fc1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
The Eudyptula Challenge
#######################
From the website: http://eudyptula-challenge.org/
The Eudyptula Challenge was a series of programming exercises for the Linux
kernel, that started from a very basic "Hello world" kernel module, moving on
up in complexity to getting patches accepted into the main Linux kernel
source tree.
Challenges
##########
Here are the links to each task's readme:
1. Write a Linux Kernel Module: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/01/readme>`__
2. Building a Custom Kernel: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/02/readme>`__
3. Modify our Custom Kernel: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/03/readme>`__
4. The Coding Style Rules: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/04/readme>`__
5. Module Loading Macros: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/05/readme>`__
6. Miscellaneous Character Drivers: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/06/readme>`__
7. Building Linux-Next: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/07/readme>`__
8. Working with debugfs: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/08/readme>`__
9. Working with sysfs: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/09/readme>`__
10. Submit a Patch: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/10/readme>`__
11. A Driver Patch: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/11/readme>`__
12. Linked Lists in Kernel Space: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/12/readme>`__
13. Optimizing Linked Lists: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/13/readme>`__
14. Process Task: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/14/readme>`__
15. Create a syscall: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/15/readme>`__
16. Submit a Real Patch: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/16/readme>`__
17. Using Kernel Treads: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/17/readme>`__
18. Handling Delayed Work: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/18/readme>`__
19. Networking Filters: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/19/readme>`__
20. FAT ioctl: `task <https://git.bryanbrattlof.com/eudyptula-challenge/tree/tasks/20/readme>`__
|