Horton, Steve - IS
2010-Jul-06 19:30 UTC
[Xen-users] BusyBox (Gave up waiting on root device)
I used the guide at http://bderzhavets.wordpress.com<http://bderzhavets.wordpress.com/> to install xen-4.0.1-rc4-pre on top of Ubuntu 10.04 using the 2.6.32.15 kernel source from jeremy''s repo. I got the kernel built and managed to get xen all built and installed but when it''s booting it drops to a busybox shell after it finds my NIC(s). It says: Gave up waiting on root device. It''s acts like it can''t mount /dev/sda1 but I don''t know why. Not sure if this is correct.. but here is my 40_custom file: menuentry "Xen-test" { set root=''(hd0,1)'' multiboot /boot/xen.gz dom0_mem=1000M module /boot/vmlinuz-2.6.32.15 root=/dev/sda1 ro module /boot/initrd.img-2.6.32.15 } Thanks! -S ________________________________ This e-mail and any files transmitted with it may be proprietary and are intended solely for the use of the individual or entity to whom they are addressed. If you have received this e-mail in error please notify the sender. Please note that any views or opinions presented in this e-mail are solely those of the author and do not necessarily represent those of ITT Corporation. The recipient should check this e-mail and any attachments for the presence of viruses. ITT accepts no liability for any damage caused by any virus transmitted by this e-mail. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Try adding "dummy=dummy" in your dom0 kernel cmdline: menuentry "Xen-test" { set root=''(hd0,1)'' multiboot /boot/xen.gz dom0_mem=1000M module /boot/vmlinuz-2.6.32.15 dummy=dummy root=/dev/sda1 ro module /boot/initrd.img-2.6.32.15 } Dante -----Original Message----- From: xen-users-bounces@lists.xensource.com [mailto:xen-users-bounces@lists.xensource.com] On Behalf Of Horton, Steve - IS Sent: Tuesday, July 06, 2010 12:30 PM To: xen-users@lists.xensource.com Subject: [Xen-users] BusyBox (Gave up waiting on root device) I used the guide at http://bderzhavets.wordpress.com<http://bderzhavets.wordpress.com/> to install xen-4.0.1-rc4-pre on top of Ubuntu 10.04 using the 2.6.32.15 kernel source from jeremy''s repo. I got the kernel built and managed to get xen all built and installed but when it''s booting it drops to a busybox shell after it finds my NIC(s). It says: Gave up waiting on root device. It''s acts like it can''t mount /dev/sda1 but I don''t know why. Not sure if this is correct.. but here is my 40_custom file: menuentry "Xen-test" { set root=''(hd0,1)'' multiboot /boot/xen.gz dom0_mem=1000M module /boot/vmlinuz-2.6.32.15 root=/dev/sda1 ro module /boot/initrd.img-2.6.32.15 } Thanks! -S _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Horton, Steve - IS
2010-Jul-07 16:10 UTC
RE: [Xen-users] BusyBox (Gave up waiting on root device)
Thanks Dan, I tried that and it worked :-) Thanks to Cristian Columbo yourself for all your help! -Steve ________________________________________ From: Dante Cinco [dantecinco@gmail.com] Sent: Tuesday, July 06, 2010 4:31 PM To: Horton, Steve - IS; Xen-users Subject: [Xen-users] BusyBox (Gave up waiting on root device) Try adding "dummy=dummy" in your dom0 kernel cmdline: menuentry "Xen-test" { set root=''(hd0,1)'' multiboot /boot/xen.gz dom0_mem=1000M module /boot/vmlinuz-2.6.32.15 dummy=dummy root=/dev/sda1 ro module /boot/initrd.img-2.6.32.15 } Dante -----Original Message----- From: xen-users-bounces@lists.xensource.com [mailto:xen-users-bounces@lists.xensource.com] On Behalf Of Horton, Steve - IS Sent: Tuesday, July 06, 2010 12:30 PM To: xen-users@lists.xensource.com Subject: [Xen-users] BusyBox (Gave up waiting on root device) I used the guide at http://bderzhavets.wordpress.com<http://bderzhavets.wordpress.com/> to install xen-4.0.1-rc4-pre on top of Ubuntu 10.04 using the 2.6.32.15 kernel source from jeremy''s repo. I got the kernel built and managed to get xen all built and installed but when it''s booting it drops to a busybox shell after it finds my NIC(s). It says: Gave up waiting on root device. It''s acts like it can''t mount /dev/sda1 but I don''t know why. Not sure if this is correct.. but here is my 40_custom file: menuentry "Xen-test" { set root=''(hd0,1)'' multiboot /boot/xen.gz dom0_mem=1000M module /boot/vmlinuz-2.6.32.15 root=/dev/sda1 ro module /boot/initrd.img-2.6.32.15 } Thanks! -S This e-mail and any files transmitted with it may be proprietary and are intended solely for the use of the individual or entity to whom they are addressed. If you have received this e-mail in error please notify the sender. Please note that any views or opinions presented in this e-mail are solely those of the author and do not necessarily represent those of ITT Corporation. The recipient should check this e-mail and any attachments for the presence of viruses. ITT accepts no liability for any damage caused by any virus transmitted by this e-mail. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Horton, Steve - IS
2010-Jul-07 16:26 UTC
RE: [Xen-users] BusyBox (Gave up waiting on root device)
Sure, My 40_custom file contains the following: menuentry "Xen-test" { set root=''(hd0,1)'' multiboot /boot/xen.gz dom0_mem=1000M module /boot/vmlinuz-2.6.32.15 dummy root=/dev/sda1 ro module /boot/initrd.img-2.6.32.15 } Then I just did an update-grub and rebooted off the new kernel. Hope this helps! -Steve ________________________________ From: Amina Khalid [amina.khalid@gmail.com] Sent: Wednesday, July 07, 2010 12:19 PM To: Horton, Steve - IS Subject: Re: [Xen-users] BusyBox (Gave up waiting on root device) Can you post how it worked? I am getting the same problem. Thanks On 7 July 2010 17:10, Horton, Steve - IS <Steve.Horton@itt.com<mailto:Steve.Horton@itt.com>> wrote: Thanks Dan, I tried that and it worked :-) Thanks to Cristian Columbo yourself for all your help! -Steve ________________________________________ From: Dante Cinco [dantecinco@gmail.com<mailto:dantecinco@gmail.com>] Sent: Tuesday, July 06, 2010 4:31 PM To: Horton, Steve - IS; Xen-users Subject: [Xen-users] BusyBox (Gave up waiting on root device) Try adding "dummy=dummy" in your dom0 kernel cmdline: menuentry "Xen-test" { set root=''(hd0,1)'' multiboot /boot/xen.gz dom0_mem=1000M module /boot/vmlinuz-2.6.32.15 dummy=dummy root=/dev/sda1 ro module /boot/initrd.img-2.6.32.15 } Dante -----Original Message----- From: xen-users-bounces@lists.xensource.com<mailto:xen-users-bounces@lists.xensource.com> [mailto:xen-users-bounces@lists.xensource.com<mailto:xen-users-bounces@lists.xensource.com>] On Behalf Of Horton, Steve - IS Sent: Tuesday, July 06, 2010 12:30 PM To: xen-users@lists.xensource.com<mailto:xen-users@lists.xensource.com> Subject: [Xen-users] BusyBox (Gave up waiting on root device) I used the guide at http://bderzhavets.wordpress.com<http://bderzhavets.wordpress.com/> to install xen-4.0.1-rc4-pre on top of Ubuntu 10.04 using the 2.6.32.15 kernel source from jeremy''s repo. I got the kernel built and managed to get xen all built and installed but when it''s booting it drops to a busybox shell after it finds my NIC(s). It says: Gave up waiting on root device. It''s acts like it can''t mount /dev/sda1 but I don''t know why. Not sure if this is correct.. but here is my 40_custom file: menuentry "Xen-test" { set root=''(hd0,1)'' multiboot /boot/xen.gz dom0_mem=1000M module /boot/vmlinuz-2.6.32.15 root=/dev/sda1 ro module /boot/initrd.img-2.6.32.15 } Thanks! -S This e-mail and any files transmitted with it may be proprietary and are intended solely for the use of the individual or entity to whom they are addressed. If you have received this e-mail in error please notify the sender. Please note that any views or opinions presented in this e-mail are solely those of the author and do not necessarily represent those of ITT Corporation. The recipient should check this e-mail and any attachments for the presence of viruses. ITT accepts no liability for any damage caused by any virus transmitted by this e-mail. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com<mailto:Xen-users@lists.xensource.com> http://lists.xensource.com/xen-users _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users