From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K8bki-0004o7-Er for qemu-devel@nongnu.org; Tue, 17 Jun 2008 10:01:40 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K8bkg-0004mh-NP for qemu-devel@nongnu.org; Tue, 17 Jun 2008 10:01:39 -0400 Received: from [199.232.76.173] (port=50240 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K8bkg-0004me-Ld for qemu-devel@nongnu.org; Tue, 17 Jun 2008 10:01:38 -0400 Received: from mail.gmx.net ([213.165.64.20]:40253) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1K8bkg-00077A-6R for qemu-devel@nongnu.org; Tue, 17 Jun 2008 10:01:38 -0400 Message-ID: <02f101c8d082$a6ab28e0$0201a8c0@zeug> From: "Sebastian Herbszt" References: <874p7tinv3.fsf@alamut.mobiliz.com.tr><002c01c8cfca$dcfa8c50$0201a8c0@zeug> <87zlpktw9p.fsf_-_@alamut.mobiliz.com.tr> Date: Tue, 17 Jun 2008 15:59:47 +0200 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: Boot Failure (CDROM boot failure code : 0004) Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Volkan YAZICI Cc: qemu-devel@nongnu.org > QEMU BIOS - build: 04/28/08 > $Revision: 1.207 $ $Date: 2008/04/21 14:22:01 $ > Options: apmbios pcibios eltorito rombios32 > > ata0 master: QEMU HARDDISK ATA-7 Hard-Disk (20480 MBytes) > ata1 master: QEMU CD-ROM ATAPI-4 Cd-Rom/Dvd-Rom > > Press F12 for boot menu. > > Booting from CD-Rom... > 4615MB medium detected > CDROM boot failure code : 0004 > Boot failed: could not read the boot disk > > FATAL: No bootable device. > > I tried above command with below combinations, but same result. > > -cdrom /dev/scd0 > -cdrom /root/scd0.iso (Created using "dd bs=2048 ..." command.) > -cdrom /home/windows/windows-server-2003-standard-x86-64-sp2.iso > > Any ideas? The size looks like a dvd. Do other dvd images work? What are their sizes? > What does "could not read the boot disk" mean exactly? >>From rombios.c // - Here are the cdrom boot failure codes: // 1 : no atapi device found // 2 : no atapi cdrom found // 3 : can not read cd - BRVD // 4 : cd is not eltorito (BRVD) // 5 : cd is not eltorito (ISO TAG) // 6 : cd is not eltorito (ELTORITO TAG) // 7 : can not read cd - boot catalog // 8 : boot catalog : bad header // 9 : boot catalog : bad platform // 10 : boot catalog : bad signature // 11 : boot catalog : bootable flag not set // 12 : can not read cd - boot image - Sebastian