From: Igor Mammedov <imammedo@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: qemu-devel@nongnu.org, Anthony Liguori <aliguori@amazon.com>
Subject: Re: [Qemu-devel] [PATCH 1/8] add pc-{i440fx,q35}-2.0 machine types
Date: Mon, 2 Dec 2013 15:30:11 +0100 [thread overview]
Message-ID: <20131202153011.33b9a814@nial.usersys.redhat.com> (raw)
In-Reply-To: <1385987083-19917-2-git-send-email-kraxel@redhat.com>
On Mon, 2 Dec 2013 13:24:36 +0100
Gerd Hoffmann <kraxel@redhat.com> wrote:
why 2.0, are we jumping from 1.7 strait to 2.0?
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
> hw/i386/pc_piix.c | 14 ++++++++++++--
> hw/i386/pc_q35.c | 11 ++++++++++-
> 2 files changed, 22 insertions(+), 3 deletions(-)
>
> diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
> index 2111f01..9329f04 100644
> --- a/hw/i386/pc_piix.c
> +++ b/hw/i386/pc_piix.c
> @@ -339,13 +339,22 @@ 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
> +
> +static QEMUMachine pc_i440fx_machine_v2_0 = {
> + PC_I440FX_2_0_MACHINE_OPTIONS,
> + .name = "pc-i440fx-2.0",
> + .alias = "pc",
> + .init = pc_init_pci,
> + .is_default = 1,
> +};
> +
> #define PC_I440FX_1_7_MACHINE_OPTIONS PC_I440FX_MACHINE_OPTIONS
> +
> static QEMUMachine pc_i440fx_machine_v1_7 = {
> PC_I440FX_1_7_MACHINE_OPTIONS,
> .name = "pc-i440fx-1.7",
> - .alias = "pc",
> .init = pc_init_pci,
> - .is_default = 1,
> };
>
> #define PC_I440FX_1_6_MACHINE_OPTIONS PC_I440FX_MACHINE_OPTIONS
> @@ -747,6 +756,7 @@ static QEMUMachine xenfv_machine = {
>
> static void pc_machine_init(void)
> {
> + qemu_register_machine(&pc_i440fx_machine_v2_0);
> qemu_register_machine(&pc_i440fx_machine_v1_7);
> qemu_register_machine(&pc_i440fx_machine_v1_6);
> qemu_register_machine(&pc_i440fx_machine_v1_5);
> diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
> index 600fc02..ac69e5d 100644
> --- a/hw/i386/pc_q35.c
> +++ b/hw/i386/pc_q35.c
> @@ -259,12 +259,20 @@ 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
> +
> +static QEMUMachine pc_q35_machine_v2_0 = {
> + PC_Q35_2_0_MACHINE_OPTIONS,
> + .name = "pc-q35-2.0",
> + .alias = "q35",
> + .init = pc_q35_init,
> +};
> +
> #define PC_Q35_1_7_MACHINE_OPTIONS PC_Q35_MACHINE_OPTIONS
>
> static QEMUMachine pc_q35_machine_v1_7 = {
> PC_Q35_1_7_MACHINE_OPTIONS,
> .name = "pc-q35-1.7",
> - .alias = "q35",
> .init = pc_q35_init,
> };
>
> @@ -306,6 +314,7 @@ static QEMUMachine pc_q35_machine_v1_4 = {
>
> static void pc_q35_machine_init(void)
> {
> + qemu_register_machine(&pc_q35_machine_v2_0);
> qemu_register_machine(&pc_q35_machine_v1_7);
> qemu_register_machine(&pc_q35_machine_v1_6);
> qemu_register_machine(&pc_q35_machine_v1_5);
next prev parent reply other threads:[~2013-12-02 14:30 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-02 12:24 [Qemu-devel] [PATCH 0/8] seabios update Gerd Hoffmann
2013-12-02 12:24 ` [Qemu-devel] [PATCH 1/8] add pc-{i440fx,q35}-2.0 machine types Gerd Hoffmann
2013-12-02 14:30 ` Igor Mammedov [this message]
2013-12-02 14:44 ` Gerd Hoffmann
2013-12-02 21:50 ` Andreas Färber
2013-12-02 12:24 ` [Qemu-devel] [PATCH 2/8] add firmware to machine options Gerd Hoffmann
2013-12-02 12:24 ` [Qemu-devel] [PATCH 3/8] roms: update seabios submodule to latest master Gerd Hoffmann
2013-12-02 12:24 ` [Qemu-devel] [PATCH 4/8] roms: build two seabios binaries Gerd Hoffmann
2013-12-02 12:24 ` [Qemu-devel] [PATCH 5/8] roms: enable seabios cross builds Gerd Hoffmann
2013-12-02 12:24 ` [Qemu-devel] [PATCH 6/8] roms: update seabios binaries Gerd Hoffmann
2013-12-02 12:24 ` [Qemu-devel] [PATCH 7/8] roms: update vgabios binaries Gerd Hoffmann
2013-12-02 12:24 ` [Qemu-devel] [PATCH 8/8] pc: switch 2.0 machine types to large seabios binary Gerd Hoffmann
-- strict thread matches above, loose matches on Subject: below --
2013-12-06 9:35 [Qemu-devel] [PULL 0/8] seabios update Gerd Hoffmann
2013-12-06 9:35 ` [Qemu-devel] [PATCH 1/8] add pc-{i440fx,q35}-2.0 machine types Gerd Hoffmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20131202153011.33b9a814@nial.usersys.redhat.com \
--to=imammedo@redhat.com \
--cc=aliguori@amazon.com \
--cc=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).