From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57475) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WuHUT-0007bQ-Vu for qemu-devel@nongnu.org; Tue, 10 Jun 2014 04:33:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WuHUL-0000zf-Na for qemu-devel@nongnu.org; Tue, 10 Jun 2014 04:33:09 -0400 Received: from mx1.redhat.com ([209.132.183.28]:2808) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WuHUL-0000zM-Fx for qemu-devel@nongnu.org; Tue, 10 Jun 2014 04:33:01 -0400 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s5A8X0ms027279 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Tue, 10 Jun 2014 04:33:00 -0400 Received: from tesla (dhcp193-115.pnq.redhat.com [10.65.193.115]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s5A8Wstg029132 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO) for ; Tue, 10 Jun 2014 04:32:59 -0400 Date: Tue, 10 Jun 2014 14:02:53 +0530 From: Kashyap Chamarthy Message-ID: <20140610083253.GH8813@tesla> References: <20140608121858.GA8813@tesla> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140608121858.GA8813@tesla> Subject: Re: [Qemu-devel] [50809c8] Attempt to boot a guest results in - qemu: could not load PC BIOS 'bios-256k.bin' List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On Sun, Jun 08, 2014 at 05:48:58PM +0530, Kashyap Chamarthy wrote: > Heya, > > I built QEMU from this commit: > > $ git log | head -2 > commit 50809c8b9288a9bfe1fdec926b7ef985608a7ea6 > Merge: 4e627ae ae74bbe > > > And, attempted to boot a Fedora guest via this QEMU CLI results as > below: > > $ /usr/local/sbin/qemu-system-x86_64 -s -S -nographic \ > -nodefconfig -nodefaults -machine accel=kvm -m 3000 \ > -drive file=/var/lib/libvirt/images/Fedora-x86_64-20-20140407-sda.qcow2,if=ide,format=qcow2,cache=none \ > -serial stdio > qemu: could not load PC BIOS 'bios-256k.bin' Pointing to pc-bios sub-directory worked: $ qemu-system-x86 . . . -L /home/kashyap/tinker-space/qemu-upstream/pc-bios/ (Thanks Rich Jones/Amit.) > That's the seabios-bin version: > > $ rpm -q seabios-bin > seabios-bin-1.7.4-3.fc21.noarch > > > That's how I build QEMU: > > $ git clone git://git.qemu.org/qemu.git > $ mkdir -p ~/build/qemu && cd ~/build/qemu > $ ~/src/qemu/./configure --target-list=x86_64-softmmu \ > --disable-werror --enable-debug > $ make -j4 > > -- /kashyap