From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NnGWm-0006CR-Ow for qemu-devel@nongnu.org; Thu, 04 Mar 2010 14:16:08 -0500 Received: from [199.232.76.173] (port=56040 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NnGWm-0006By-9v for qemu-devel@nongnu.org; Thu, 04 Mar 2010 14:16:08 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NnGWj-0001RJ-K8 for qemu-devel@nongnu.org; Thu, 04 Mar 2010 14:16:08 -0500 Received: from mail-fx0-f214.google.com ([209.85.220.214]:64345) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NnGWj-0001R9-9C for qemu-devel@nongnu.org; Thu, 04 Mar 2010 14:16:05 -0500 Received: by fxm6 with SMTP id 6so3329668fxm.2 for ; Thu, 04 Mar 2010 11:16:04 -0800 (PST) Message-ID: <4B9006E4.7090507@codemonkey.ws> Date: Thu, 04 Mar 2010 13:15:48 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <1267726847.5322.40.camel@localhost.localdomain> In-Reply-To: <1267726847.5322.40.camel@localhost.localdomain> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: Build failure for upstream qemu 04-03-2010 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Lucas Meneghel Rodrigues Cc: Marcelo Tosatti , qemu-devel@nongnu.org, "Michael S. Tsirkin" It was broken by: commit da51e79b7ff2126cc2448749d657a4f6e3b1270f Author: Stefan Weil Date: Tue Mar 2 22:37:44 2010 +0100 eepro100: Support gpxe boot for all eepro100 devices Only two boot ROM files are needed for all devices. * Add these GPXE ROM files using new naming convention (as discussed on qemu-devel). Both files were created with http://rom-o-matic.net/, PCI vendor / device ids as in ROM filenames and option BANNER_TIMEOUT = 0. * Remove old PXE ROM file for i82559er. It was replaced by gpxe-eepro100-80861209.rom. * Update pc-bios/README (and sort entries). Full support still needs additional eepro100 fixes. Signed-off-by: Stefan Weil Signed-off-by: Michael S. Tsirkin Stefan/Michael, can you please submit a fix? The Makefile wasn't adjusted for the new PXE naming. Really, the roms should not have been renamed like this in this sort of patch. If we switch to gpxe as a prefix, we should rename all of the roms at once as opposed to having some roms with a pxe name and others with gpxe. Regards, Anthony Liguori On 03/04/2010 12:20 PM, Lucas Meneghel Rodrigues wrote: > Hi folks, I found this problem trying to build qemu from the qemu.git > repo: > > 03/04 13:07:34 ERROR| kvm:0061| Test failed: Command failed, rc=2, Command returned non-zero exit status > * Command: > make install > Exit status: 2 > Duration: 0 > > stdout: > install -d -m0755 -p "/usr/local/autotest/tests/kvm/build/etc/qemu" > install -m0644 -p /usr/local/autotest/tests/kvm/src/kvm_userspace/sysconfigs/target/target-x86_64.conf "/usr/local/autotest/tests/kvm/build/etc/qemu" > install -d -m0755 -p "/usr/local/autotest/tests/kvm/build/bin" > install -m0755 -p qemu-nbd qemu-img qemu-io "/usr/local/autotest/tests/kvm/build/bin" > install -d -m0755 -p "/usr/local/autotest/tests/kvm/build/share/qemu" > set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin video.x openbios-sparc32 openbios-sparc64 openbios-ppc pxe-e1000.bin pxe-i82559er.bin pxe-ne2k_pci.bin pxe-pcnet.bin pxe-rtl8139.bin pxe-virtio.bin bamboo.dtb petalogix-s3adsp1800.dtb multiboot.bin linuxboot.bin; do \ > install -m0644 -p /usr/local/autotest/tests/kvm/src/kvm_userspace/pc-bios/$x "/usr/local/autotest/tests/kvm/build/share/qemu"; \ > done > stderr: > install: cannot stat `/usr/local/autotest/tests/kvm/src/kvm_userspace/pc-bios/pxe-i82559er.bin': No such file or directory > make: *** [install] Error 1 > > The exact commit where the problem was found: > > 03/04 12:59:44 INFO | kvm_utils:0367| Commit hash for git://git.savannah.nongnu.org/qemu.git is deb4203dc9ebba6992ac1d583773c143a014e15a (no tag found) > > Please let me know if you need more information about the problem > > >