From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jan Kiszka Subject: [PATCH] qemu-kvm: Install built option roms Date: Wed, 02 Sep 2009 18:17:33 +0200 Message-ID: <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 david.siemens.de ([192.35.17.14]:18391 "EHLO david.siemens.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752944AbZIBQRp (ORCPT ); Wed, 2 Sep 2009 12:17:45 -0400 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 --- Makefile | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index bfc4b0f..9a70653 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 $(SRC_PATH)/pc-bios/optionrom/$$x ];then \ + $(INSTALL_DATA) pc-bios/optionrom/$$x "$(DESTDIR)$(datadir)"; \ + fi \ done endif $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"