-
Notifications
You must be signed in to change notification settings - Fork 4
/
p1.html
29 lines (29 loc) · 949 Bytes
/
p1.html
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
<html>
<font face="helvetica">
<title>What We'll Be Covering</title>
<body>
<p align=center><font size=+5>What We'll Be Covering</font>
<hr>
<a href="contents.html">Contents</a>
<font size=+3>
<ul>
<li><a href="getkernel.html">How to get the kernel source</a>
<li>How to <a href="kernelconfig.html">configure</a>,
<a href="kernelcompile.html">compile</a> and
<a href="kernelinstall.html">install</a> the kernel
<li><a href="kerneltour1.html">Brief Tour of the Kernel Source</a>
<li>How to <a href="makingpatches.html">make patches to the kernel</a>
<li>How to get started <a href="module.html">making your own kernel module</a>
<ul>
<li>loading/unloading modules, registering a driver, file operations, /sys, udev, etc.
</ul>
<li>Memory allocation
<li>DMA (direct memory access)
<li>Interrupts
<li>Sleeping, Delaying, wait_for_completion
<li>debugging
<li><a href="further_reading.html">Recommended further reading</a>
</ul>
</font>
</body>
</html>