From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jan Kiszka Subject: [PATCH v2] qemu-kvm: Install built option roms Date: Wed, 02 Sep 2009 18:27:15 +0200 Message-ID: <4A9E9CE3.10906@siemens.com> References: <4A9E9A9D.407@siemens.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: Avi Kivity , kvm-devel To: Marcelo Tosatti Return-path: Received: from goliath.siemens.de ([192.35.17.28]:17627 "EHLO goliath.siemens.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752995AbZIBQ11 (ORCPT ); Wed, 2 Sep 2009 12:27:27 -0400 In-Reply-To: <4A9E9A9D.407@siemens.com> Sender: kvm-owner@vger.kernel.org List-ID: Based on Avi's version: Pick up option roms from the build directory if available. As we do not ship a extboot.bin binary, this also fixes the installation of this rom. Signed-off-by: Jan Kiszka --- v2: Removed forgotten reference to $(SRC_PATH) Makefile | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index bfc4b0f..0850241 100644 --- a/Makefile +++ b/Makefile @@ -251,6 +251,9 @@ ifneq ($(BLOBS),) if [ -f $(SRC_PATH)/pc-bios/$$x ];then \ $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ fi \ + ; if [ -f pc-bios/optionrom/$$x ];then \ + $(INSTALL_DATA) pc-bios/optionrom/$$x "$(DESTDIR)$(datadir)"; \ + fi \ done endif $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"