From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LUiAS-0004gz-Pq for qemu-devel@nongnu.org; Wed, 04 Feb 2009 08:51:52 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LUiAR-0004gL-6I for qemu-devel@nongnu.org; Wed, 04 Feb 2009 08:51:52 -0500 Received: from [199.232.76.173] (port=36299 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LUiAR-0004gG-3b for qemu-devel@nongnu.org; Wed, 04 Feb 2009 08:51:51 -0500 Received: from mx2.redhat.com ([66.187.237.31]:34676) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LUiAQ-0001QG-Jh for qemu-devel@nongnu.org; Wed, 04 Feb 2009 08:51:50 -0500 Message-Id: <20090204134435.526271163@localhost.localdomain> References: <20090204134415.511485602@localhost.localdomain> Date: Wed, 04 Feb 2009 11:44:17 -0200 From: Marcelo Tosatti Content-Disposition: inline; filename=32-pci-slots Subject: [Qemu-devel] [patch 2/5] bios: add 26 pci slots, bringing the total to 32 Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Avi Kivity lack of pci slots causes Windows to complain when installing too many devices. Signed-off-by: Avi Kivity Index: bochs/bios/acpi-dsdt.dsl =================================================================== --- bochs.orig/bios/acpi-dsdt.dsl +++ bochs/bios/acpi-dsdt.dsl @@ -63,6 +63,32 @@ DefinitionBlock ( prt_slot3(0x0003), prt_slot0(0x0004), prt_slot1(0x0005), + prt_slot2(0x0006), + prt_slot3(0x0007), + prt_slot0(0x0008), + prt_slot1(0x0009), + prt_slot2(0x000a), + prt_slot3(0x000b), + prt_slot0(0x000c), + prt_slot1(0x000d), + prt_slot2(0x000e), + prt_slot3(0x000f), + prt_slot0(0x0010), + prt_slot1(0x0011), + prt_slot2(0x0012), + prt_slot3(0x0013), + prt_slot0(0x0014), + prt_slot1(0x0015), + prt_slot2(0x0016), + prt_slot3(0x0017), + prt_slot0(0x0018), + prt_slot1(0x0019), + prt_slot2(0x001a), + prt_slot3(0x001b), + prt_slot0(0x001c), + prt_slot1(0x001d), + prt_slot2(0x001e), + prt_slot3(0x001f), }) Name (_CRS, ResourceTemplate () --