-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (68 loc) · 2.56 KB
/
index.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
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<html>
<head>
<title>Workshop kernel debugging</title>
<link rel="stylesheet" href="workshop.css" type="text/css" />
</head>
<body>
<div id="column">
<div id="main">
<div id="head">
<img src="logo-solo.png" id="logo" />
<h1>Workshop kernel debugging</h1>
</div>
<ul>
<li><a href="devenv.html">Getting to know the development environment</a>
</ul>
<h2>Debugging techniques</h2>
<ul>
<li><tt>printk</tt>
<ul>
<li><tt>printk</tt> is the kernel equivalent
of <tt>printf</tt>. Use it to log things while the kernel is
running.
<li>Check <a href="devenv.html">here</a> for information recompiling the kernel after modifying it.
</ul>
<li>gdb
<ul>
<li>Check <a href="devenv.html">here</a> for information about debugging the kernel using the Gnu DeBugger.
<li>Be sure to check the "Resources" section below for some cheat sheets
</ul>
<li>(function)tracing
<ul>
<li>See <tt>Documentation/trace/ftrace.txt</tt>
<li>To be expanded...
</ul>
</ul>
<h2>Assignments</h2>
<ul>
<li><a href="printf.html">How does printf work?</a>
<li><a href="birth.html">Birth of the first process</a>
<li><a href="oops.html">A kernel oops</a>
<li><a href="lunaris.html">Help the Lunaris project!</a>
</ul>
<h2>Background information</h2>
<ul>
<li>...
</ul>
<h2>Resources</h2>
<ul>
<li><a href="http://lxr.linux.no">Linux Cross Reference</a> voor kernel <a href="http://lxr.linux.no/#linux+v2.6.32.44">2.6.32.44</a> and kernel <a href="http://lxr.linux.no/#linux+v2.6.32.44">2.6.29.6</a>
<li>the <tt>Documentation</tt> directory in your kernel source tree, especially <tt>Documentation/trace/ftrace.txt</tt>
<li>GDB Cheat sheets
<ul>
<li><a href="http://darkdust.net/files/GDB%20Cheat%20Sheet.pdf">
My favorite</a>
<a href="GDB%20Cheat%20Sheet.pdf">(local copy)</a>
<li><a href="http://users.ece.utexas.edu/~adnan/gdb-refcard.pdf">
GDB original</a>
<a href="gdb-refcard.pdf">(local copy)</a>
</ul>
<li>Robert Love, "Linux Kernel Development". <a href="http://www.informit.com/articles/article.aspx?p=101760">Read chapter 3 about the scheduler online</a>
</ul>
</div>
<address>
<a href="mailto:[email protected]">Kees-Jan Dijkzeul</a>
</address>
</div>
</body>
</html>