Re: Linux OS boilerplate

2001-05-17 Thread H. Peter Anvin
Followup to: <[EMAIL PROTECTED]> By author:Paul Gortmaker <[EMAIL PROTECTED]> In newsgroup: linux.dev.kernel > > > Does there exist an outline (detailed or not) of the boot process from > > the point of BIOS bootsector load to when the kernel proper begins > > IIRC, there is some useful inf

Re: Linux OS boilerplate

2001-02-21 Thread Tim Wright
On Mon, Feb 19, 2001 at 03:07:33AM -0700, Eric W. Biederman wrote: > With linux-2.4 able to do a complete PCI bus setup it isn't as bad it used > to be, but it's still pretty significant. For an incomplete subset of chipsets. Serverworks doesn't work correctly for a start (see the threads relati

Re: Linux OS boilerplate

2001-02-19 Thread H. Peter Anvin
Paul Gortmaker wrote: > > Scott Long wrote: > > > > I've been poring over the x86 boot code for a while now and I've been > > considering writing a FAQ on the boot process (mostly for my own use, > > [...] > > > Does there exist an outline (detailed or not) of the boot process from > > the poin

Re: Linux OS boilerplate

2001-02-19 Thread Eric W. Biederman
Alan Cox <[EMAIL PROTECTED]> writes: > > I've been poring over the x86 boot code for a while now and I've been > > considering writing a FAQ on the boot process (mostly for my own use, > > but maybe others will be interested). This would include all relevant > > information on setting up the x86

Re: Linux OS boilerplate

2001-02-19 Thread Paul Gortmaker
Scott Long wrote: > > I've been poring over the x86 boot code for a while now and I've been > considering writing a FAQ on the boot process (mostly for my own use, [...] > Does there exist an outline (detailed or not) of the boot process from > the point of BIOS bootsector load to when the kern

Re: Linux OS boilerplate

2001-02-18 Thread Alan Cox
> I've been poring over the x86 boot code for a while now and I've been > considering writing a FAQ on the boot process (mostly for my own use, > but maybe others will be interested). This would include all relevant > information on setting up the x86 hardware for a boot (timers, PIC, A20, > prote

Re: Linux OS boilerplate

2001-02-18 Thread TeknoDragon
On Sun, 18 Feb 2001, Scott Long wrote: > Does there exist an outline (detailed or not) of the boot process from > the point of BIOS bootsector load to when the kernel proper begins > execution? If not would anyone be willing to help me understand > bootsect.S and setup.S enough so that I might wr

Re: Linux OS boilerplate

2001-02-18 Thread Rick Hohensee
Have you seen Janet_Reno? ftp://linux01.gwdg.de/pub/cLIeNUX/interim/Janet_Reno.tgz IIRC. Janet is an x86 bootsector that gets into protected mode and can use the AT BIOS in pmode interrupts. It's written with a bunch of m4 macros I call asmacs that I'm currently basing an assembler in Bash on.

Re: Linux OS boilerplate

2001-02-18 Thread Jeremy Jackson
Scott Long wrote: > Does there exist an outline (detailed or not) of the boot process from > the point of BIOS bootsector load to when the kernel proper begins > execution? If not would anyone be willing to help me understand > bootsect.S and setup.S enough so that I might write such an outline?