From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NRFcS-0002bM-HI for qemu-devel@nongnu.org; Sat, 02 Jan 2010 20:51:00 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NRFcN-0002ZP-Hz for qemu-devel@nongnu.org; Sat, 02 Jan 2010 20:50:59 -0500 Received: from [199.232.76.173] (port=45269 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NRFcN-0002ZF-6U for qemu-devel@nongnu.org; Sat, 02 Jan 2010 20:50:55 -0500 Received: from cantor.suse.de ([195.135.220.2]:51972 helo=mx1.suse.de) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NRFcM-0007Z2-F8 for qemu-devel@nongnu.org; Sat, 02 Jan 2010 20:50:54 -0500 From: Alexander Graf Date: Sun, 3 Jan 2010 02:50:50 +0100 Message-Id: <1262483450-15206-7-git-send-email-agraf@suse.de> In-Reply-To: <1262483450-15206-1-git-send-email-agraf@suse.de> References: <1262483450-15206-1-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PATCH 6/6] Enable secondary cmd64x List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers Cc: Blue Swirl , Aurelien Jarno We're not using any macio IDE devices, so let's enable the secondary cmd64x IDE device, so we get all four possible IDE devices exposed to the guest. Later we definitely need to enable macio or any other device that Linux understands in default configurations. Signed-off-by: Alexander Graf --- hw/ppc_newworld.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/ppc_newworld.c b/hw/ppc_newworld.c index 308e102..d66860b 100644 --- a/hw/ppc_newworld.c +++ b/hw/ppc_newworld.c @@ -343,7 +343,7 @@ static void ppc_core99_init (ram_addr_t ram_size, hd[i] = drive_get(IF_IDE, i / MAX_IDE_DEVS, i % MAX_IDE_DEVS); } dbdma = DBDMA_init(&dbdma_mem_index); - pci_cmd646_ide_init(pci_bus, hd, 0); + pci_cmd646_ide_init(pci_bus, hd, 1); /* cuda also initialize ADB */ cuda_init(&cuda_mem_index, pic[0x19]); -- 1.6.0.2