From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37270) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VqNoK-0002Qq-ML for qemu-devel@nongnu.org; Tue, 10 Dec 2013 08:57:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VqNoE-0002t5-MF for qemu-devel@nongnu.org; Tue, 10 Dec 2013 08:57:16 -0500 Received: from mail-pd0-f171.google.com ([209.85.192.171]:58073) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VqNoE-0002t1-Gs for qemu-devel@nongnu.org; Tue, 10 Dec 2013 08:57:10 -0500 Received: by mail-pd0-f171.google.com with SMTP id z10so7374115pdj.2 for ; Tue, 10 Dec 2013 05:57:09 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <20131209233334.GC27737@otherpad.lan.raisama.net> References: <1386322527-23148-1-git-send-email-kraxel@redhat.com> <1386322527-23148-9-git-send-email-kraxel@redhat.com> <20131209233334.GC27737@otherpad.lan.raisama.net> From: Peter Maydell Date: Tue, 10 Dec 2013 13:56:49 +0000 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [PATCH] Add bios-256k.bin to BLOBS on Makefile List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost Cc: Gerd Hoffmann , Anthony Liguori , QEMU Developers On 9 December 2013 23:33, Eduardo Habkost wrote: > The default machine-type (pc-i440fx-2.0) now requires bios-256k.bin, but > "make install" isn't installing it, so qemu-system-x86_64 won't run out > of the box. Add it to BLOBS so it gets installed. > > Signed-off-by: Eduardo Habkost > --- > Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Makefile b/Makefile > index bdff4e4..807054b 100644 > --- a/Makefile > +++ b/Makefile > @@ -290,7 +290,7 @@ common de-ch es fo fr-ca hu ja mk nl-be pt sl tr \ > bepo cz > > ifdef INSTALL_BLOBS > -BLOBS=bios.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \ > +BLOBS=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \ > vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \ > acpi-dsdt.aml q35-acpi-dsdt.aml \ > ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin \ Incidentally it's a bit bogus that we have to list all these blob names both here and in configure (the latter uses some wildcards but is still a kinda manual list)... thanks -- PMM