From f05d4d94d6bb0e240e6cfda65972fd86601f9f0d Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Mon, 29 Jul 2013 07:00:29 +0200 Subject: [PATCH] mips_malta: fix copy of the 0x1fc00000 region MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Copy the whole 0x1fe000000 region into 0x1fc00000, independently of the loaded BIOS size. This fix the MIPS make check tests. Reported-by: Andreas Färber Tested-by: Andreas Färber Cc: Paul Burton Cc: Leon Alrae Signed-off-by: Aurelien Jarno --- hw/mips/mips_malta.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/mips/mips_malta.c b/hw/mips/mips_malta.c index 2dc66f7748..1589b59194 100644 --- a/hw/mips/mips_malta.c +++ b/hw/mips/mips_malta.c @@ -1036,9 +1036,9 @@ void mips_malta_init(QEMUMachineInitArgs *args) */ memory_region_init_ram(bios_copy, NULL, "bios.1fc", BIOS_SIZE); if (!rom_copy(memory_region_get_ram_ptr(bios_copy), - FLASH_ADDRESS, bios_size)) { + FLASH_ADDRESS, BIOS_SIZE)) { memcpy(memory_region_get_ram_ptr(bios_copy), - memory_region_get_ram_ptr(bios), bios_size); + memory_region_get_ram_ptr(bios), BIOS_SIZE); } memory_region_set_readonly(bios_copy, true); memory_region_add_subregion(system_memory, RESET_ADDRESS, bios_copy);