The problem here seems to be of module [driver] only for the disk on which root filesystem is residing. Generally, when you are using any SCSI device for root filesystem, you've to do make modules_install and then mkinitrd for the new kernel. But if you are not using SCSI device, then the driver for the disk is most probably inbuilt within the kernel image. One more thing here is if you are not doing modules_install, then you have to make sure that the code for filesystem type [ext2, ext3 or whatever] for root filesystem is built within the kernel and not as a module. So for example, if your root filesystem is ext3 type, then you'll have put "y" for CONFIG_EXT3_FS flag and not "m" in .config file. FYI initrd gives you the starting support while booting through kernel. It contains some modules and other things so as to bring the kernel up :-) Leme know if this helps you. Thanks. Sumit Sharma. On Fri, 20 Aug 2004 Ahmed A wrote : >Hello, > >I have a RedHat Enterprise Linux 3.0 system. I am >trying to get 2.6 kernel running on this platform. I >successfully compiled the 2.6 kernel, but I have not >done a "make modules_install" yet. I just would like >to get the kernel booting as much as possible without >modules (for now). > >My grub.conf file looks as follows: > >default=1 >timeout=20 >splashimage=(hd0,0)/boot/grub/splash.xpm.gz >title Red Hat Enterprise Linux WS (2.4.21-4.ELsmp) > root (hd0,0) > kernel /boot/vmlinuz-2.4.21-4.ELsmp ro >root=LABEL=/12 mem=448M vga=791 > initrd /boot/initrd-2.4.21-4.ELsmp.img >title Red Hat Enterprise Linux WS-up (2.4.21-4.EL) > root (hd0,0) > kernel /boot/vmlinuz-2.4.21-4.EL ro >root=LABEL=/12 mem=448M vga=791 > initrd /boot/initrd-2.4.21-4.EL.img ># My 2.6. kernel >title Linux 2.6.7 > root (hd0,0) > kernel /boot/bzImage-2.6.7 ro root=LABEL=/12 >mem=448M vga=normal > > >When I try to boot "Linux 2.6.7", I get the following >error: > >VFS: Cannot open root device "LABEL=/12" or >unknown-block(0,0) >Please append a correct "root=" boot option >Kernel panic: VFS: Unable to mount root fs on >unknown-block(0,0) > > >Can someone please suggest a way I can correct this >error. > >Thank you, >Ahmed. > > > > >__________________________________ >Do you Yahoo!? >Yahoo! Mail is new and improved - Check it out! >http://promotions.yahoo.com/new_mail > >-- >Kernelnewbies: Help each other learn about the Linux kernel. >Archive: http://mail.nl.linux.org/kernelnewbies/ >FAQ: http://kernelnewbies.org/faq/ >