From: Edgar E. Iglesias Date: Thu, 12 Nov 2009 01:15:20 +0000 (+0100) Subject: microblaze: Move the kcmdline out of the way. X-Git-Tag: v0.12.0-rc0~341 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=ba6d048aadb3a7fb87781a76dc89bb09edac1fcf;p=users%2Fdwmw2%2Fqemu.git microblaze: Move the kcmdline out of the way. Avoids rom overlap conflicts. Signed-off-by: Edgar E. Iglesias --- diff --git a/hw/petalogix_s3adsp1800_mmu.c b/hw/petalogix_s3adsp1800_mmu.c index 93ce87fc84..9f4c36037b 100644 --- a/hw/petalogix_s3adsp1800_mmu.c +++ b/hw/petalogix_s3adsp1800_mmu.c @@ -174,7 +174,7 @@ petalogix_s3adsp1800_init(ram_addr_t ram_size, bootstrap_pc = ddr_base; } - env->regs[5] = ddr_base + kernel_size; + env->regs[5] = ddr_base + kernel_size + 8192; if (kernel_cmdline && (kcmdline_len = strlen(kernel_cmdline))) { pstrcpy_targphys("cmdline", env->regs[5], 256, kernel_cmdline); }