From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:56703) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R5iuc-0006uK-E9 for qemu-devel@nongnu.org; Mon, 19 Sep 2011 14:49:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R5iuT-0007BO-9r for qemu-devel@nongnu.org; Mon, 19 Sep 2011 14:49:50 -0400 Received: from smtp5-g21.free.fr ([212.27.42.5]:51559) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R5iuS-0007AI-Mr for qemu-devel@nongnu.org; Mon, 19 Sep 2011 14:49:41 -0400 Message-ID: <4E778EB7.5010706@reactos.org> Date: Mon, 19 Sep 2011 20:49:27 +0200 From: =?UTF-8?B?SGVydsOpIFBvdXNzaW5lYXU=?= MIME-Version: 1.0 References: <1316361891-8960-1-git-send-email-hpoussin@reactos.org> <4E76F5F2.7000204@siemens.com> In-Reply-To: <4E76F5F2.7000204@siemens.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH] isapc: give system address space when pci is disabled List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jan Kiszka Cc: qemu-devel@nongnu.org Jan Kiszka a =C3=A9crit : > On 2011-09-18 18:04, Herv=C3=A9 Poussineau wrote: >> Signed-off-by: Herv=C3=A9 Poussineau >> --- >> hw/pc_piix.c | 2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/hw/pc_piix.c b/hw/pc_piix.c >> index da6fa55..c0b8a3a 100644 >> --- a/hw/pc_piix.c >> +++ b/hw/pc_piix.c >> @@ -121,7 +121,7 @@ static void pc_init1(MemoryRegion *system_memory, >> pc_memory_init(system_memory, >> kernel_filename, kernel_cmdline, initrd_filena= me, >> below_4g_mem_size, above_4g_mem_size, >> - pci_memory, &ram_memory); >> + pci_enabled ? pci_memory : system_memory, &ram= _memory); >> } >> =20 >> if (!xen_enabled()) { >=20 > Makes sense. I guess we should rename 'pci_memory' inside pc_memory_ini= t > to reflect this - 'rom_memory'? >=20 > But -M isapc still only gives me a black screen. Are there further fixe= s > required? >=20 Yes, you also need to rollback pc-bios/bios.bin to previous version (ie=20 8b06c62ae48b67b320f7420dcd4854c5559e1532) Herv=C3=A9