From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37515) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WuHpz-00052x-An for qemu-devel@nongnu.org; Tue, 10 Jun 2014 04:55:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WuHpt-0001At-2h for qemu-devel@nongnu.org; Tue, 10 Jun 2014 04:55:23 -0400 Received: from mail-wg0-x232.google.com ([2a00:1450:400c:c00::232]:57837) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WuHps-0001Ae-Sa for qemu-devel@nongnu.org; Tue, 10 Jun 2014 04:55:17 -0400 Received: by mail-wg0-f50.google.com with SMTP id x13so3018534wgg.33 for ; Tue, 10 Jun 2014 01:55:16 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <5396C7F1.6090403@redhat.com> Date: Tue, 10 Jun 2014 10:55:13 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <20140608121858.GA8813@tesla> In-Reply-To: <20140608121858.GA8813@tesla> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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: Kashyap Chamarthy , qemu-devel@nongnu.org Il 08/06/2014 14:18, Kashyap Chamarthy ha scritto: > 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' > > > 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 > > > Any hints as to why can't QEMU load the BIOS in this case? > QEMU's "make install" should have installed the firmware blobs in /usr/share/local/qemu, including bios-256k.bin. Did it? Paolo