* [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance
[not found] ` <4936B2BA.1020302@reactivated.net>
@ 2008-12-04 8:34 ` Nicolas Sebrecht
2008-12-04 12:40 ` Alexander Ramos Jardim
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Nicolas Sebrecht @ 2008-12-04 8:34 UTC (permalink / raw
To: gentoo-kernel; +Cc: 1i5t5.duncan
<OT>
My first post was on the gentoo-dev mailing list.
Thank you Duncan for your answer. I already use to read lwm.net articles.
I will look for John's stuff.
</>
On Wed, Dec 03, 2008 at 04:24:26PM +0000, Daniel Drake wrote:
>
> Nicolas,
>
> Nicolas Sebrecht wrote:
>> I would like to go further in the Linux kernel internal comprehension.
>> Could someone tell me where to find a good starting free documentation ?
>> Most of the documentations I've found are about old kernel versions (2.4
>> series).
>
> Ask this on the gentoo-kernel list, please. I'm happy to help, but there
> are many people there who would also appreciate being part of the
> discussion.
Yeah, sorry.
Does someone knows a good general (and free) documentation where to
start ?
--
Nicolas Sebrecht
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance
2008-12-04 8:34 ` [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance Nicolas Sebrecht
@ 2008-12-04 12:40 ` Alexander Ramos Jardim
2008-12-04 12:52 ` Ingo Kemper
2008-12-04 13:02 ` Daniel Drake
2 siblings, 0 replies; 8+ messages in thread
From: Alexander Ramos Jardim @ 2008-12-04 12:40 UTC (permalink / raw
To: gentoo-kernel
[-- Attachment #1: Type: text/plain, Size: 1097 bytes --]
Well you can read the docs generated with the kernel tree: bash$#make
htmldocs
You can take a look at the site http://www.kroah.com/linux/ or this one
http://kernelnewbies.org/
2008/12/4 Nicolas Sebrecht <nicolas.s-dev@laposte.net>
>
> <OT>
> My first post was on the gentoo-dev mailing list.
> Thank you Duncan for your answer. I already use to read lwm.net articles.
> I will look for John's stuff.
> </>
>
> On Wed, Dec 03, 2008 at 04:24:26PM +0000, Daniel Drake wrote:
> >
> > Nicolas,
> >
> > Nicolas Sebrecht wrote:
> >> I would like to go further in the Linux kernel internal comprehension.
> >> Could someone tell me where to find a good starting free documentation ?
> >> Most of the documentations I've found are about old kernel versions (2.4
> >> series).
> >
> > Ask this on the gentoo-kernel list, please. I'm happy to help, but there
> > are many people there who would also appreciate being part of the
> > discussion.
>
> Yeah, sorry.
>
> Does someone knows a good general (and free) documentation where to
> start ?
>
> --
> Nicolas Sebrecht
>
>
>
--
Alexander Ramos Jardim
[-- Attachment #2: Type: text/html, Size: 1681 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance
2008-12-04 8:34 ` [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance Nicolas Sebrecht
2008-12-04 12:40 ` Alexander Ramos Jardim
@ 2008-12-04 12:52 ` Ingo Kemper
2008-12-04 13:02 ` Daniel Drake
2 siblings, 0 replies; 8+ messages in thread
From: Ingo Kemper @ 2008-12-04 12:52 UTC (permalink / raw
To: gentoo-kernel
Did you already read "Linux Kernel in a Nutshell"?
online: http://www.kroah.com/lkn/
local: emerge linux-kernel-in-a-nutshell
Cite from the above site: "I want this book to help bring more people
into the Linux kernel development fold."
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance
2008-12-04 8:34 ` [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance Nicolas Sebrecht
2008-12-04 12:40 ` Alexander Ramos Jardim
2008-12-04 12:52 ` Ingo Kemper
@ 2008-12-04 13:02 ` Daniel Drake
2008-12-04 14:20 ` Branko Badrljica
2 siblings, 1 reply; 8+ messages in thread
From: Daniel Drake @ 2008-12-04 13:02 UTC (permalink / raw
To: gentoo-kernel
Nicolas Sebrecht wrote:
> Does someone knows a good general (and free) documentation where to
> start ?
For working with the internals, specifically driver-side stuff and the
mechanisms you need to write drivers, this book is really good (and free):
http://lwn.net/Kernel/LDD3/
I'm also fond of this book which complements LDD3 nicely (it talks about
the scheduler, memory management, and a lot of other non-driver stuff
which LDD3 purposefully omits):
http://rlove.org/
It's not free though.
Daniel
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance
2008-12-04 13:02 ` Daniel Drake
@ 2008-12-04 14:20 ` Branko Badrljica
2008-12-06 16:46 ` Nicolas Sebrecht
0 siblings, 1 reply; 8+ messages in thread
From: Branko Badrljica @ 2008-12-04 14:20 UTC (permalink / raw
To: gentoo-kernel
Daniel Drake wrote:
> Nicolas Sebrecht wrote:
>> Does someone knows a good general (and free) documentation where to
>> start ?
>
> For working with the internals, specifically driver-side stuff and the
> mechanisms you need to write drivers, this book is really good (and
> free):
> http://lwn.net/Kernel/LDD3/
>
> I'm also fond of this book which complements LDD3 nicely (it talks
> about the scheduler, memory management, and a lot of other non-driver
> stuff which LDD3 purposefully omits):
> http://rlove.org/
> It's not free though.
>
> Daniel
>
After reading/skimming "essentials" and "kernel drivers", my favourite
way is to use Code::Blocks, make an empty project and then recursively
import all the kernel sources into it.
It is big pile of source and import takes a few minutes, but being able
to browse, search and jump effotlessly through the tree more than makes
it wortwhile.
Caveat: C::B will crash during the import phase if during that time
there is other program that significantly loads CPUs or if user
generates gtk events by clicking on the program window.
I suspect the cause for this in wxGTK, but haven't been able to pinpoint
it. It's good enough for me at this time...
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance
2008-12-04 14:20 ` Branko Badrljica
@ 2008-12-06 16:46 ` Nicolas Sebrecht
2008-12-07 0:13 ` Archibald Haddock
0 siblings, 1 reply; 8+ messages in thread
From: Nicolas Sebrecht @ 2008-12-06 16:46 UTC (permalink / raw
To: gentoo-kernel
Thank you all.
I'll explore following your advices.
--
Nicolas Sebrecht
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance
2008-12-06 16:46 ` Nicolas Sebrecht
@ 2008-12-07 0:13 ` Archibald Haddock
2008-12-07 7:07 ` Nicolas Sebrecht
0 siblings, 1 reply; 8+ messages in thread
From: Archibald Haddock @ 2008-12-07 0:13 UTC (permalink / raw
To: gentoo-kernel
Nicolas Sebrecht wrote:
>
> Thank you all.
> I'll explore following your advices.
>
Could someone copy my the advices before this message? I was not
registered before that message?
I have a question about names, should I use my real name on all
gentoo-kernel related things? Or are pseudos ok, for protecting the own
privat sphere?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance
2008-12-07 0:13 ` Archibald Haddock
@ 2008-12-07 7:07 ` Nicolas Sebrecht
0 siblings, 0 replies; 8+ messages in thread
From: Nicolas Sebrecht @ 2008-12-07 7:07 UTC (permalink / raw
To: gentoo-kernel
On Sun, Dec 07, 2008 at 01:13:36AM +0100, Archibald Haddock wrote:
> Could someone copy my the advices before this message? I was not
> registered before that message?
You can get the messages from the archives at
http://archives.gentoo.org/gentoo-kernel/ for this mailing-list in
particular or at
http://archives.gentoo.org/ in general.
> I have a question about names, should I use my real name on all
> gentoo-kernel related things? Or are pseudos ok, for protecting the own
> privat sphere?
You can use whatever you want. As we don't have anything to hide here,
most use their real name. There is no duty.
--
Nicolas Sebrecht
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2008-12-07 7:19 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <49232BC8.9020000@gentoo.org>
[not found] ` <91b13c310812012059l25579c2fi9c06e3e4598dddb@mail.gmail.com>
[not found] ` <20081203061555.GC25344@ultras>
[not found] ` <4936B2BA.1020302@reactivated.net>
2008-12-04 8:34 ` [gentoo-kernel] Re: [gentoo-dev] Looking for help with kernel maintenance Nicolas Sebrecht
2008-12-04 12:40 ` Alexander Ramos Jardim
2008-12-04 12:52 ` Ingo Kemper
2008-12-04 13:02 ` Daniel Drake
2008-12-04 14:20 ` Branko Badrljica
2008-12-06 16:46 ` Nicolas Sebrecht
2008-12-07 0:13 ` Archibald Haddock
2008-12-07 7:07 ` Nicolas Sebrecht
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox