From patchwork Mon Dec 9 23:33:34 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 299233 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id CDC502C00AB for ; Tue, 10 Dec 2013 10:34:14 +1100 (EST) Received: from localhost ([::1]:46373 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VqAL4-00059x-Q8 for incoming@patchwork.ozlabs.org; Mon, 09 Dec 2013 18:34:10 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38490) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VqAKi-00056n-VP for qemu-devel@nongnu.org; Mon, 09 Dec 2013 18:33:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VqAKY-0007g2-VH for qemu-devel@nongnu.org; Mon, 09 Dec 2013 18:33:48 -0500 Received: from mx1.redhat.com ([209.132.183.28]:12100) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VqAKY-0007fQ-O5 for qemu-devel@nongnu.org; Mon, 09 Dec 2013 18:33:38 -0500 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id rB9NXaxY009837 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 9 Dec 2013 18:33:36 -0500 Received: from localhost (ovpn-113-168.phx2.redhat.com [10.3.113.168]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id rB9NXZQg012417; Mon, 9 Dec 2013 18:33:35 -0500 Date: Mon, 9 Dec 2013 21:33:34 -0200 From: Eduardo Habkost To: Gerd Hoffmann Message-ID: <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> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1386322527-23148-9-git-send-email-kraxel@redhat.com> X-Fnord: you can see the fnord User-Agent: Mutt/1.5.21 (2010-09-15) X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: qemu-devel@nongnu.org, Anthony Liguori Subject: [Qemu-devel] [PATCH] Add bios-256k.bin to BLOBS on Makefile X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 Reviewed-by: Gerd Hoffmann Tested-by: William Dauchy --- 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 \