From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39064) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WMi7p-00019B-CZ for qemu-devel@nongnu.org; Sun, 09 Mar 2014 14:07:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WMi7j-00066h-DH for qemu-devel@nongnu.org; Sun, 09 Mar 2014 14:07:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:21277) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WMi7j-00066Z-5I for qemu-devel@nongnu.org; Sun, 09 Mar 2014 14:06:55 -0400 Date: Sun, 9 Mar 2014 20:06:52 +0200 From: "Michael S. Tsirkin" Message-ID: <1394388381-22813-3-git-send-email-mst@redhat.com> References: <1394388381-22813-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1394388381-22813-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PATCH v3 3/3] pc: option rom migration compatibility with 1.7 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, jeff.nelson@redhat.com, lersek@redhat.com, dgilbert@redhat.com, Anthony Liguori when using 1.7 machine types, enable option ROMs in RAM to match that version. Signed-off-by: Michael S. Tsirkin --- hw/i386/pc_piix.c | 1 + hw/i386/pc_q35.c | 1 + 2 files changed, 2 insertions(+) diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c index fb2d636..5e1d2d3 100644 --- a/hw/i386/pc_piix.c +++ b/hw/i386/pc_piix.c @@ -266,6 +266,7 @@ static void pc_compat_1_7(QEMUMachineInitArgs *args) { smbios_type1_defaults = false; gigabyte_align = false; + option_rom_has_mr = true; } static void pc_compat_1_6(QEMUMachineInitArgs *args) diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index eb55ae4..4b0456a 100644 --- a/hw/i386/pc_q35.c +++ b/hw/i386/pc_q35.c @@ -244,6 +244,7 @@ static void pc_compat_1_7(QEMUMachineInitArgs *args) { smbios_type1_defaults = false; gigabyte_align = false; + option_rom_has_mr = true; } static void pc_compat_1_6(QEMUMachineInitArgs *args) -- MST