From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NTFmk-0003Gw-Eo for qemu-devel@nongnu.org; Fri, 08 Jan 2010 09:25:54 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NTFmf-0003CV-H1 for qemu-devel@nongnu.org; Fri, 08 Jan 2010 09:25:53 -0500 Received: from [199.232.76.173] (port=43424 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NTFmf-0003CE-1s for qemu-devel@nongnu.org; Fri, 08 Jan 2010 09:25:49 -0500 Received: from mx1.redhat.com ([209.132.183.28]:7856) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NTFme-0006JL-M6 for qemu-devel@nongnu.org; Fri, 08 Jan 2010 09:25:48 -0500 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o08EPlVL014314 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 8 Jan 2010 09:25:47 -0500 From: Gerd Hoffmann Date: Fri, 8 Jan 2010 15:25:42 +0100 Message-Id: <1262960742-18267-7-git-send-email-kraxel@redhat.com> In-Reply-To: <1262960742-18267-1-git-send-email-kraxel@redhat.com> References: <1262960742-18267-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 6/6] pc: add rombar to compat properties for pc-0.10 and pc-0.11 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann So '-M pc-0.10' and '-M pc-0.11' will use the fw_cfg rom load method by default. Signed-off-by: Gerd Hoffmann --- hw/pc.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/hw/pc.c b/hw/pc.c index 3ed43f5..825501c 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -1315,6 +1315,10 @@ static QEMUMachine pc_machine_v0_11 = { .driver = "virtio-blk-pci", .property = "vectors", .value = stringify(0), + },{ + .driver = "PCI", + .property = "rombar", + .value = stringify(0), }, { /* end of list */ } } @@ -1342,6 +1346,10 @@ static QEMUMachine pc_machine_v0_10 = { .driver = "virtio-blk-pci", .property = "vectors", .value = stringify(0), + },{ + .driver = "PCI", + .property = "rombar", + .value = stringify(0), }, { /* end of list */ } }, -- 1.6.5.2