From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46471) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VorpQ-0004zU-9L for qemu-devel@nongnu.org; Fri, 06 Dec 2013 04:36:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VorpJ-0006b9-Sp for qemu-devel@nongnu.org; Fri, 06 Dec 2013 04:36:08 -0500 Received: from mx1.redhat.com ([209.132.183.28]:60322) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VorpJ-0006b5-Kp for qemu-devel@nongnu.org; Fri, 06 Dec 2013 04:36:01 -0500 From: Gerd Hoffmann Date: Fri, 6 Dec 2013 10:35:27 +0100 Message-Id: <1386322527-23148-9-git-send-email-kraxel@redhat.com> In-Reply-To: <1386322527-23148-1-git-send-email-kraxel@redhat.com> References: <1386322527-23148-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 8/8] pc: switch 2.0 machine types to large seabios binary List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann , Anthony Liguori Signed-off-by: Gerd Hoffmann --- hw/i386/pc_piix.c | 4 +++- hw/i386/pc_q35.c | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c index 9329f04..ab56285 100644 --- a/hw/i386/pc_piix.c +++ b/hw/i386/pc_piix.c @@ -339,7 +339,9 @@ static void pc_xen_hvm_init(QEMUMachineInitArgs *args) .desc = "Standard PC (i440FX + PIIX, 1996)", \ .hot_add_cpu = pc_hot_add_cpu -#define PC_I440FX_2_0_MACHINE_OPTIONS PC_I440FX_MACHINE_OPTIONS +#define PC_I440FX_2_0_MACHINE_OPTIONS \ + PC_I440FX_MACHINE_OPTIONS, \ + .default_machine_opts = "firmware=bios-256k.bin" static QEMUMachine pc_i440fx_machine_v2_0 = { PC_I440FX_2_0_MACHINE_OPTIONS, diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index ac69e5d..97aa842 100644 --- a/hw/i386/pc_q35.c +++ b/hw/i386/pc_q35.c @@ -259,7 +259,9 @@ static void pc_q35_init_1_4(QEMUMachineInitArgs *args) .desc = "Standard PC (Q35 + ICH9, 2009)", \ .hot_add_cpu = pc_hot_add_cpu -#define PC_Q35_2_0_MACHINE_OPTIONS PC_Q35_MACHINE_OPTIONS +#define PC_Q35_2_0_MACHINE_OPTIONS \ + PC_Q35_MACHINE_OPTIONS, \ + .default_machine_opts = "firmware=bios-256k.bin" static QEMUMachine pc_q35_machine_v2_0 = { PC_Q35_2_0_MACHINE_OPTIONS, -- 1.8.3.1