Re: Trouble booting with new 2.6.22.3 kernel

2007-08-21 Thread Hex Star
I resolved the issue like so: 1) Download kernel source (K) from kernel.org 2) move the archive to a place where source is, /home/user/linux for example (will have to do mkdir /home/user/linux first of course!) via mv /home/user/Desktop/archive /dest/archive 3) Extract the archive: if .tar.bz2:

Re: Trouble booting with new 2.6.22.3 kernel

2007-08-21 Thread Hex Star
On 8/21/07, Jan Engelhardt <[EMAIL PROTECTED]> wrote: > - which is why people use initramfs. It's all perfect. > > >Perfect is the enemy of good > > > Jan > -- How would I go about setting up a initramfs for the kernel? The book I'm referring to to help me learn kernel compilation and inst

Re: Trouble booting with new 2.6.22.3 kernel

2007-08-21 Thread Hex Star
On 8/21/07, Ismail Dönmez <[EMAIL PROTECTED]> wrote: > Well also the filesystem module for the root fs ( / ) should not be a module > as you won't be able mount root at startup hence causing a panic. Thanks, I have made sure that it is built in along with ata_piix ...however now I get this error:

Re: Trouble booting with new 2.6.22.3 kernel

2007-08-21 Thread Hex Star
On 8/21/07, Jan Engelhardt <[EMAIL PROTECTED]> wrote: > > success = (using_initramfs && ide == 'M') || ide == 'Y'; Thanks for the replies guys, I am building the ata_piix and ata_generic drivers into the kernel now...hope this works :) - To unsubscribe from this list: send the line "unsubscribe l

Re: Trouble booting with new 2.6.22.3 kernel

2007-08-21 Thread Hex Star
Btw, I am not using a initramfs image.. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: Trouble booting with new 2.6.22.3 kernel

2007-08-21 Thread Hex Star
On 8/21/07, Ismail Dönmez <[EMAIL PROTECTED]> wrote: > > Make sure your IDE/SATA driver is compiled in unless you are using an > initramfs image. > > Regards, > ismail > > -- > Perfect is the enemy of good > Ah so the IDE/SATA driver should not be a module (if it is a module it'll cause this issu

Re: Trouble booting with new 2.6.22.3 kernel

2007-08-21 Thread Hex Star
On 8/21/07, Hex Star <[EMAIL PROTECTED]> wrote: > Ah so the IDE/SATA driver should not be a module (if it is a module > it'll cause this issue)? > One more thing, are there any other critical kernel components that won't work as a module and thus prevent boot? Thanks!