-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbiblio.xml
389 lines (346 loc) · 8.47 KB
/
biblio.xml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
<chapter id="biblio">
<title>Bibliography</title>
<para>
Most of the information in this book has been extracted from the kernel
documentation and source code. This is the best place for information on
how to build and install the kernel, and is usually kept up to date when
things in the build procedure change.
</para>
<sect1>
<title>Books</title>
<para>
There are a number of very good Linux kernel programming books availble,
but only a few that deal with building and installing the kernel. Here is
a list of books that the author has found useful when dealing with the
Linux kernel.
</para>
<sect2>
<title>General Linux Books</title>
<variablelist>
<varlistentry>
<term>
Ellen Siever, Aaron Weber, Stephen Figgins, Robert Love, Arnold Robbins.
<emphasis>Linux in a Nutshell, Fifth Edition</emphasis>.
O'Reilly & Associates, 2005
</term>
<listitem>
<para>
This book can be has the most complete and authoritative command reference
for Linux. It covers almost every different command that you will ever
need to use.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
Yaghmour, Karim.
<emphasis>Building Embedded Systems</emphasis>.
O'Reilly & Associates, 2003.
</term>
<listitem>
<para>
This book, although mainly oriented toward the embedded Linux developer,
has a great section on how to build up a cross-compiler toolchain and
kernel. It is highly recommended for that, as well as other portions of
this book that are very relevant for people wishing to learn more about
how to customise a Linux kernel and the rest of the system.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2>
<title>Linux Kernel Books</title>
<para>
Most of these books are oriented toward the programmer who is interested
in learning how to program within the kernel. They are much more
technically oriented than this book, but are a great place to start if
you wish to learn more about the code that controls the kernel.
</para>
<variablelist>
<varlistentry>
<term>
Jonathan Corbet, Alessandro Rubini, and Greg Kroah-Hartman.
<emphasis>Linux Device Drivers, Third Edition</emphasis>.
O'Reilly & Associates, 2005.
</term>
<listitem>
<para>
This book covers thow the different kernel device driver subsystems
work, and provides lots of examples of working drivers. It is
recommended for anyone wanting to work with Linux kernel drivers. It is
also available online for free at
<systemitem role="url">http://lwn.net/Kernel/LDD3/</systemitem>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
Love, Robert.<emphasis>Linux Kernel Development, Second Edition</emphasis>.
Novell Press Publishing, 2005.
</term>
<listitem>
<para>
Robert Love's book covers almost all areas of the Linux kernel, showing
how everything works together. It is a great place to start learning
about the different portions of the kernel internals.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
Bovet, Daniel P. and Cesate, Marco.
<emphasis>Understanding the Linux Kernel, Third Edition</emphasis>.
O'Reilly & Associates, 2005.</term>
<listitem>
<para>
This book goes into the design and implementation of the core Linux
kernel. It is a great reference for understanding the algorithms used
within the different portions of the kernel. It is highly recommended
for anyone wanting to understand the details of how the kernel works.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>
<sect1>
<title>Tool locations</title>
<para>
A lot of different tools were mentioned in this book. Here are links to
where the source code for these tools can be found on the internet.
</para>
<variablelist>
<varlistentry>
<term>
Linux kernel
</term>
<term>
</term>
<listitem>
<para>
<systemitem role="url">http://www.kernel.org</systemitem> and
<systemitem role="url">ftp://ftp.kernel.org</systemitem> contain all of
the different versions of the Linux kernel source code.
<systemitem role="url">http://www.kernel.org/git/</systemitem> contains
a listing of all <command>git</command> trees in use by the different
kernel developers.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
gcc
</term>
<listitem>
<para>
<systemitem role="url">http://gcc.gnu.org/</systemitem> is the main site
for everything related to the Gnu C Compiler.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
binutils
</term>
<listitem>
<para>
<systemitem role="url">http://www.gnu.org/software/binutils/</systemitem>
is the main site for all information about <command>binutils</command>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
make
</term>
<listitem>
<para>
<systemitem role="url">http://www.gnu.org/software/make/</systemitem>
is the main site for all information about <command>make</command>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
util-linux
</term>
<listitem>
<para>
<systemitem role="url">http://www.kernel.org/pub/linux/utils/util-linux/</systemitem>
is the directory for where all versions of <command>util-linux</command>
can be downloaded.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
module-init-tools
</term>
<listitem>
<para>
<systemitem role="url">http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/</systemitem>
is the directory for where all versions of
<command>module-init-tools</command> can be downloaded.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
e2fsprogs
</term>
<listitem>
<para>
<systemitem role="url">http://e2fsprogs.sourceforge.net/</systemitem> is
the main project page for the <command>e2fsprogs</command> package.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
jfsutils
</term>
<listitem>
<para>
<systemitem role="url">http://jfs.sourceforge.net/</systemitem> is the
main project page for the <command>jfsutils</command> package.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
reiserfsprogs
</term>
<listitem>
<para>
<systemitem role="url">http://www.namesys.com/download.html</systemitem>
is the main project page for the <command>reiserfsprogs</command>
package.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
xfsprogs
</term>
<listitem>
<para>
<systemitem role="url">http://oss.sgi.com/projects/xfs/</systemitem> is
the main project page for the <command>xfsprogs</command> package.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
quota-tools
</term>
<listitem>
<para>
<systemitem role="url">http://sourceforge.net/projects/linuxquota/</systemitem>
is the main project page for the <command>quota-tools</command> package.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
nfs-utils
</term>
<listitem>
<para>
<systemitem role="url">http://nfs.sf.net/</systemitem> is the main
project page for the <command>nfs-utils</command> package.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
udev
</term>
<listitem>
<para>
<systemitem role="url">http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html</systemitem>
is the directory for where all versions of <command>udev</command> can
be downloaded.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
procfs
</term>
<listitem>
<para>
<systemitem role="url">http://procps.sourceforge.net/</systemitem> is
the main project page for the <command>procfs</command> package.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
patchutils
</term>
<listitem>
<para>
<systemitem role="url">http://cyberelk.net/tim/patchutils</systemitem>
is the location for all of the <command>patchutils</command> releases.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
git
</term>
<listitem>
<para>
<systemitem role="url">http://git.or.cz/</systemitem> is the main site
for the <command>git</command> project.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
ketchup
</term>
<listitem>
<para>
<systemitem role="url">http://www.selenic.com/ketchup/</systemitem> is
the main project page for the <command>ketchup</command> program.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
quilt
</term>
<listitem>
<para>
<systemitem role="url">http://savannah.nongnu.org/projects/quilt</systemitem> is
the main project page for the <command>quilt</command> program.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
distcc
</term>
<listitem>
<para>
<systemitem role="url">http://distcc.samba.org/</systemitem> is
the main project page for the <command>distcc</command> program.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
ccache
</term>
<listitem>
<para>
<systemitem role="url">http://ccache.samba.org/</systemitem> is
the main project page for the <command>ccache</command> program.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect1>
</chapter>