* boot
@ 2005-06-08 2:02 Blah Blah
2005-06-08 2:10 ` boot Michael Krufky
2005-06-08 2:42 ` boot randy_dunlap
0 siblings, 2 replies; 7+ messages in thread
From: Blah Blah @ 2005-06-08 2:02 UTC (permalink / raw)
To: linux-kernel
Hi
I confused the bootsect.S which's in the betwenn 2.4.* kernel and 2.6.*.
I mean in 2.4.* , it like "jmp $INITSEG, $go",
but In 2.6.* like 2.6.11,I can not find where use "INITSEG" in
the bootsect.S file.
And i'm greate intersted in the basic things in linux. the boot
must the first thing.
So i want i can get a good document which descripe the bootsect.S
file.and some tips will fine too.
another is where's the latest document for 2.6.* kernel? the faq's only 2.4.*
If you know about it,please tell me.
My kernel is 2.6.11.
Thanks
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: boot
2005-06-08 2:02 boot Blah Blah
@ 2005-06-08 2:10 ` Michael Krufky
2005-06-08 2:28 ` boot Blah Blah
2005-06-08 2:42 ` boot randy_dunlap
1 sibling, 1 reply; 7+ messages in thread
From: Michael Krufky @ 2005-06-08 2:10 UTC (permalink / raw)
To: Blah Blah; +Cc: linux-kernel
Blah Blah wrote:
>another is where's the latest document for 2.6.* kernel? the faq's only 2.4.*
>If you know about it,please tell me.
>
>
Documentation for the kernel is located within the source. Go download
the sources from www.kernel.org and check out the Documentation/
directory within the sources.
--
Michael Krufky
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: boot
2005-06-08 2:10 ` boot Michael Krufky
@ 2005-06-08 2:28 ` Blah Blah
2005-06-08 2:44 ` boot randy_dunlap
2005-06-08 16:01 ` boot Michael Krufky
0 siblings, 2 replies; 7+ messages in thread
From: Blah Blah @ 2005-06-08 2:28 UTC (permalink / raw)
To: mkrufky; +Cc: linux-kernel
I mean something like
http://www.faqs.org/docs/kernel_2_4/
On 6/8/05, Michael Krufky <mkrufky@m1k.net> wrote:
> Blah Blah wrote:
>
> >another is where's the latest document for 2.6.* kernel? the faq's only 2.4.*
> >If you know about it,please tell me.
> >
> >
> Documentation for the kernel is located within the source. Go download
> the sources from www.kernel.org and check out the Documentation/
> directory within the sources.
>
> --
> Michael Krufky
>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: boot
2005-06-08 2:02 boot Blah Blah
2005-06-08 2:10 ` boot Michael Krufky
@ 2005-06-08 2:42 ` randy_dunlap
1 sibling, 0 replies; 7+ messages in thread
From: randy_dunlap @ 2005-06-08 2:42 UTC (permalink / raw)
To: Blah Blah; +Cc: linux-kernel
On Wed, 8 Jun 2005 10:02:47 +0800 Blah Blah wrote:
| Hi
| I confused the bootsect.S which's in the betwenn 2.4.* kernel and 2.6.*.
| I mean in 2.4.* , it like "jmp $INITSEG, $go",
| but In 2.6.* like 2.6.11,I can not find where use "INITSEG" in
| the bootsect.S file.
| And i'm greate intersted in the basic things in linux. the boot
| must the first thing.
| So i want i can get a good document which descripe the bootsect.S
| file.and some tips will fine too.
bootsect.S isn't used any longer. see the final changeset comments
for it here:
http://linux.bkbits.net:8080/linux-2.5/related/arch/i386/boot/bootsect.S?nav=index.html|src/|src/arch|src/arch/i386|src/arch/i386/boot
| another is where's the latest document for 2.6.* kernel? the faq's only 2.4.*
| If you know about it,please tell me.
LDD3 (Linux Device Drivers, 3rd edition) and the in-kernel 'kerneldoc'
comments are the closest to that and the best chance of staying
updated and current.
LDD3 is available at
http://lwn.net/Kernel/LDD3/
or in tree/paper form at (some) bookstores.
| My kernel is 2.6.11.
---
~Randy
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: boot
2005-06-08 2:28 ` boot Blah Blah
@ 2005-06-08 2:44 ` randy_dunlap
2005-06-08 16:01 ` boot Michael Krufky
1 sibling, 0 replies; 7+ messages in thread
From: randy_dunlap @ 2005-06-08 2:44 UTC (permalink / raw)
To: Blah Blah; +Cc: mkrufky, linux-kernel
On Wed, 8 Jun 2005 10:28:23 +0800 Blah Blah wrote:
| I mean something like
| http://www.faqs.org/docs/kernel_2_4/
BTW, I also did a version of Linux 2.4 :( x86 init. It may
help you somewhat.
http://www.xenotime.net/linux/linit/lin240_init_x86.html
| On 6/8/05, Michael Krufky <mkrufky@m1k.net> wrote:
| > Blah Blah wrote:
| >
| > >another is where's the latest document for 2.6.* kernel? the faq's only 2.4.*
| > >If you know about it,please tell me.
| > >
| > >
| > Documentation for the kernel is located within the source. Go download
| > the sources from www.kernel.org and check out the Documentation/
| > directory within the sources.
| >
| > --
| > Michael Krufky
---
~Randy
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: boot
2005-06-08 2:28 ` boot Blah Blah
2005-06-08 2:44 ` boot randy_dunlap
@ 2005-06-08 16:01 ` Michael Krufky
2005-06-21 2:52 ` boot guorke
1 sibling, 1 reply; 7+ messages in thread
From: Michael Krufky @ 2005-06-08 16:01 UTC (permalink / raw)
To: Blah Blah; +Cc: linux-kernel
Blah Blah wrote:
>I mean something like
>http://www.faqs.org/docs/kernel_2_4/
>
>
I stumbled upon this by accident today:
http://www.digitalhermit.com/linux/Kernel-Build-HOWTO.html
Is this something more like what you're looking for?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: boot
2005-06-08 16:01 ` boot Michael Krufky
@ 2005-06-21 2:52 ` guorke
0 siblings, 0 replies; 7+ messages in thread
From: guorke @ 2005-06-21 2:52 UTC (permalink / raw)
To: mkrufky; +Cc: linux-kernel
Thanks, It's a good article,i also save it .
On 6/9/05, Michael Krufky <mkrufky@m1k.net> wrote:
> Blah Blah wrote:
>
> >I mean something like
> >http://www.faqs.org/docs/kernel_2_4/
> >
> >
> I stumbled upon this by accident today:
>
> http://www.digitalhermit.com/linux/Kernel-Build-HOWTO.html
>
> Is this something more like what you're looking for?
>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2005-06-21 4:00 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-08 2:02 boot Blah Blah
2005-06-08 2:10 ` boot Michael Krufky
2005-06-08 2:28 ` boot Blah Blah
2005-06-08 2:44 ` boot randy_dunlap
2005-06-08 16:01 ` boot Michael Krufky
2005-06-21 2:52 ` boot guorke
2005-06-08 2:42 ` boot randy_dunlap
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox