From patchwork Thu Mar 4 20:31:35 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 46977 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 5BA47B7CF9 for ; Fri, 5 Mar 2010 07:34:21 +1100 (EST) Received: from localhost ([127.0.0.1]:46456 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NnHk8-00087a-82 for incoming@patchwork.ozlabs.org; Thu, 04 Mar 2010 15:34:00 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NnHhx-0007md-MO for qemu-devel@nongnu.org; Thu, 04 Mar 2010 15:31:45 -0500 Received: from [199.232.76.173] (port=49267 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NnHhx-0007mG-8O for qemu-devel@nongnu.org; Thu, 04 Mar 2010 15:31:45 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NnHhu-0002wC-PT for qemu-devel@nongnu.org; Thu, 04 Mar 2010 15:31:45 -0500 Received: from moutng.kundenserver.de ([212.227.126.186]:64388) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NnHhu-0002va-9D for qemu-devel@nongnu.org; Thu, 04 Mar 2010 15:31:42 -0500 Received: from flocke.weilnetz.de (p54ADFF12.dip.t-dialin.net [84.173.255.18]) by mrelayeu.kundenserver.de (node=mrbap1) with ESMTP (Nemesis) id 0MYtGN-1OACJ03ryl-00Vp16; Thu, 04 Mar 2010 21:31:38 +0100 Received: from stefan by flocke.weilnetz.de with local (Exim 4.71) (envelope-from ) id 1NnHho-0005gA-OH; Thu, 04 Mar 2010 21:31:36 +0100 From: Stefan Weil To: QEMU Developers X-Mailer: git-send-email 1.7.0 In-Reply-To: <4B901066.1070903@mail.berlios.de> References: <4B901066.1070903@mail.berlios.de> X-Provags-ID: V01U2FsdGVkX19B5o2iT0aFmCkjrQ0FdfULGz+dr/BTH4CxApU Uk+F69rB65qHatN4GOfhP51Lgh8BmYvfqQE0ZiNVZ1DOLR1xfd uVkIgerIwApvtsdBeUeFiD+s50KF5pi8S0Y+Uh6DvQtSFqdU2E nqQ== X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: lmr@redhat.com, mst@redhat.com Subject: [Qemu-devel] [PATCH] Makefile: Fix names of GPXE ROM files X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org da51e79b7ff2126cc2448749d657a4f6e3b1270f added two new ROM files and removed an old one for eepro100.c. These changes were missing in Makefile (which resulted in a broken "make install"). Reported by Lucas Meneghel Rodrigues, thanks. Signed-off-by: Stefan Weil --- Makefile | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 4af1317..46a337f 100644 --- a/Makefile +++ b/Makefile @@ -172,7 +172,9 @@ common de-ch es fo fr-ca hu ja mk nl-be pt sl tr ifdef INSTALL_BLOBS BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ video.x openbios-sparc32 openbios-sparc64 openbios-ppc \ -pxe-e1000.bin pxe-i82559er.bin \ +gpxe-eepro100-80861209.rom \ +gpxe-eepro100-80861229.rom \ +pxe-e1000.bin \ pxe-ne2k_pci.bin pxe-pcnet.bin \ pxe-rtl8139.bin pxe-virtio.bin \ bamboo.dtb petalogix-s3adsp1800.dtb \